|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Danielkin AI | Creative Intelligence for Real Business Impact</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<script> |
|
tailwind.config = { |
|
theme: { |
|
extend: { |
|
colors: { |
|
primary: '#3b82f6', |
|
secondary: '#eab308', |
|
accent: '#a855f7', |
|
dark: '#1e293b', |
|
light: '#f8fafc' |
|
}, |
|
fontFamily: { |
|
sans: ['Inter', 'sans-serif'], |
|
display: ['Bebas Neue', 'sans-serif'] |
|
}, |
|
animation: { |
|
'float': 'float 6s ease-in-out infinite', |
|
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite' |
|
}, |
|
keyframes: { |
|
float: { |
|
'0%, 100%': { transform: 'translateY(0)' }, |
|
'50%': { transform: 'translateY(-20px)' } |
|
} |
|
} |
|
} |
|
} |
|
} |
|
</script> |
|
<style> |
|
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap'); |
|
|
|
body { |
|
font-family: 'Inter', sans-serif; |
|
transition: background-color 0.3s, color 0.3s; |
|
} |
|
|
|
.gradient-text { |
|
background: linear-gradient(90deg, #3b82f6, #a855f7, #eab308); |
|
-webkit-background-clip: text; |
|
background-clip: text; |
|
color: transparent; |
|
} |
|
|
|
.gradient-bg { |
|
background: linear-gradient(135deg, #3b82f6, #a855f7); |
|
} |
|
|
|
.card-hover:hover { |
|
transform: translateY(-5px); |
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
|
} |
|
|
|
.neural-pattern { |
|
background-image: radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1px); |
|
background-size: 20px 20px; |
|
} |
|
|
|
.dark .neural-pattern { |
|
background-image: radial-gradient(circle, rgba(168, 85, 247, 0.1) 1px, transparent 1px); |
|
} |
|
|
|
.service-card:hover .service-icon { |
|
transform: scale(1.1); |
|
background: linear-gradient(135deg, #3b82f6, #a855f7); |
|
-webkit-background-clip: text; |
|
background-clip: text; |
|
color: transparent; |
|
} |
|
|
|
.toggle-checkbox:checked { |
|
right: 0; |
|
background-color: #a855f7; |
|
} |
|
|
|
.toggle-checkbox:checked + .toggle-label { |
|
background-color: #3b82f6; |
|
} |
|
|
|
.admin-panel { |
|
display: none; |
|
} |
|
|
|
.show-admin .admin-panel { |
|
display: block; |
|
} |
|
|
|
.grid-gallery { |
|
display: grid; |
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); |
|
grid-auto-rows: 300px; |
|
grid-gap: 1rem; |
|
grid-auto-flow: dense; |
|
} |
|
|
|
@media (min-width: 1024px) { |
|
.grid-gallery { |
|
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); |
|
} |
|
} |
|
|
|
.gallery-item { |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.gallery-item:hover { |
|
transform: scale(1.02); |
|
} |
|
|
|
.gallery-item:nth-child(3n) { |
|
grid-column: span 2; |
|
} |
|
</style> |
|
</head> |
|
<body class="bg-light text-dark dark:bg-dark dark:text-light neural-pattern"> |
|
|
|
<nav class="fixed w-full bg-white/80 dark:bg-slate-900/80 backdrop-blur-md z-50 shadow-sm"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="flex justify-between h-16 items-center"> |
|
<div class="flex items-center"> |
|
<a href="#home" class="text-2xl font-bold gradient-text">Danielkin AI</a> |
|
</div> |
|
<div class="hidden md:flex items-center space-x-8"> |
|
<a href="#home" class="hover:text-primary dark:hover:text-accent transition">Home</a> |
|
<a href="#about" class="hover:text-primary dark:hover:text-accent transition">About</a> |
|
<a href="#services" class="hover:text-primary dark:hover:text-accent transition">Services</a> |
|
<a href="#portfolio" class="hover:text-primary dark:hover:text-accent transition">Portfolio</a> |
|
<a href="#contact" class="hover:text-primary dark:hover:text-accent transition">Contact</a> |
|
<button id="admin-toggle" class="text-xs bg-gray-200 dark:bg-slate-700 px-2 py-1 rounded-full">Admin</button> |
|
<div class="relative inline-block w-12 mr-2 align-middle select-none"> |
|
<input type="checkbox" id="toggle" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer"/> |
|
<label for="toggle" class="toggle-label block overflow-hidden h-6 rounded-full bg-gray-300 cursor-pointer"></label> |
|
</div> |
|
<label for="toggle" class="text-xs font-medium"> |
|
<i class="fas fa-moon dark:hidden"></i> |
|
<i class="fas fa-sun hidden dark:inline"></i> |
|
</label> |
|
</div> |
|
<div class="md:hidden flex items-center"> |
|
<button id="mobile-menu-button" class="text-dark dark:text-light"> |
|
<i class="fas fa-bars text-2xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="mobile-menu" class="hidden md:hidden bg-white dark:bg-slate-800 pb-4 px-4 shadow-lg"> |
|
<div class="pt-2 pb-3 space-y-1"> |
|
<a href="#home" class="block px-3 py-2 rounded-md hover:bg-gray-100 dark:hover:bg-slate-700">Home</a> |
|
<a href="#about" class="block px-3 py-2 rounded-md hover:bg-gray-100 dark:hover:bg-slate-700">About</a> |
|
<a href="#services" class="block px-3 py-2 rounded-md hover:bg-gray-100 dark:hover:bg-slate-700">Services</a> |
|
<a href="#portfolio" class="block px-3 py-2 rounded-md hover:bg-gray-100 dark:hover:bg-slate-700">Portfolio</a> |
|
<a href="#contact" class="block px-3 py-2 rounded-md hover:bg-gray-100 dark:hover:bg-slate-700">Contact</a> |
|
<div class="flex items-center justify-between px-3 py-2"> |
|
<button id="admin-toggle-mobile" class="text-xs bg-gray-200 dark:bg-slate-700 px-2 py-1 rounded-full">Admin</button> |
|
<div class="flex items-center"> |
|
<div class="relative inline-block w-12 mr-2 align-middle select-none"> |
|
<input type="checkbox" id="toggle-mobile" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer"/> |
|
<label for="toggle-mobile" class="toggle-label block overflow-hidden h-6 rounded-full bg-gray-300 cursor-pointer"></label> |
|
</div> |
|
<label for="toggle-mobile" class="text-xs font-medium"> |
|
<i class="fas fa-moon dark:hidden"></i> |
|
<i class="fas fa-sun hidden dark:inline"></i> |
|
</label> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<main> |
|
|
|
<section id="home" class="pt-24 pb-16 md:pt-32 md:pb-24 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> |
|
<div class="flex flex-col md:flex-row items-center"> |
|
<div class="md:w-1/2 mb-12 md:mb-0"> |
|
<h1 class="text-4xl md:text-6xl font-bold mb-6"> |
|
<span class="gradient-text">Creative Intelligence</span><br> |
|
for Real Business Impact |
|
</h1> |
|
<p class="text-lg md:text-xl text-gray-600 dark:text-gray-300 mb-8"> |
|
Transform your business with tailored AI solutions that combine technical expertise with creative vision. |
|
</p> |
|
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
|
<a href="#contact" class="bg-primary hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-full transition duration-300 text-center"> |
|
Let's Talk AI |
|
</a> |
|
<a href="#services" class="border-2 border-primary text-primary dark:border-accent dark:text-accent font-bold py-3 px-6 rounded-full transition duration-300 hover:bg-primary/10 dark:hover:bg-accent/10 text-center"> |
|
Explore Services |
|
</a> |
|
</div> |
|
</div> |
|
<div class="md:w-1/2 flex justify-center"> |
|
<div class="relative w-full max-w-md"> |
|
<div class="absolute -top-10 -left-10 w-32 h-32 bg-accent rounded-full opacity-20 animate-pulse-slow"></div> |
|
<div class="absolute -bottom-10 -right-10 w-40 h-40 bg-secondary rounded-full opacity-20 animate-pulse-slow"></div> |
|
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" |
|
alt="AI Creative Intelligence" |
|
class="relative z-10 w-full h-auto rounded-2xl shadow-xl animate-float"> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="about" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">About Danielkin AI</h2> |
|
<div class="w-24 h-1 gradient-bg mx-auto mb-6"></div> |
|
<p class="text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto"> |
|
Where technical expertise meets creative vision to deliver transformative AI solutions. |
|
</p> |
|
</div> |
|
|
|
<div class="flex flex-col lg:flex-row items-center gap-12"> |
|
<div class="lg:w-1/2"> |
|
<div class="bg-white dark:bg-slate-800 p-8 rounded-2xl shadow-lg"> |
|
<h3 class="text-2xl font-bold mb-4">The Story Behind the Vision</h3> |
|
<p class="text-gray-600 dark:text-gray-300 mb-4"> |
|
Danielkin AI was born from Daniel's passion for both artificial intelligence and creative expression. After years of exploring the intersection between technology and art, Daniel recognized an opportunity to help businesses harness the power of AI in practical, impactful ways. |
|
</p> |
|
<p class="text-gray-600 dark:text-gray-300 mb-4"> |
|
What started as a personal exploration of AI tools evolved into a mission to democratize access to these powerful technologies for businesses of all sizes. |
|
</p> |
|
<p class="text-gray-600 dark:text-gray-300"> |
|
Today, Danielkin AI stands at the forefront of practical AI implementation, helping clients navigate the rapidly evolving landscape of artificial intelligence with confidence and creativity. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
<div class="lg:w-1/2"> |
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-6"> |
|
<div class="bg-white dark:bg-slate-800 p-6 rounded-xl shadow-md"> |
|
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center mb-4"> |
|
<i class="fas fa-brain text-white text-xl"></i> |
|
</div> |
|
<h4 class="font-bold text-lg mb-2">Technical Expertise</h4> |
|
<p class="text-gray-600 dark:text-gray-300"> |
|
Deep understanding of AI technologies and their practical business applications. |
|
</p> |
|
</div> |
|
<div class="bg-white dark:bg-slate-800 p-6 rounded-xl shadow-md"> |
|
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center mb-4"> |
|
<i class="fas fa-palette text-white text-xl"></i> |
|
</div> |
|
<h4 class="font-bold text-lg mb-2">Creative Vision</h4> |
|
<p class="text-gray-600 dark:text-gray-300"> |
|
Unique ability to blend technical solutions with artistic expression. |
|
</p> |
|
</div> |
|
<div class="bg-white dark:bg-slate-800 p-6 rounded-xl shadow-md"> |
|
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center mb-4"> |
|
<i class="fas fa-lightbulb text-white text-xl"></i> |
|
</div> |
|
<h4 class="font-bold text-lg mb-2">Innovative Approach</h4> |
|
<p class="text-gray-600 dark:text-gray-300"> |
|
Constantly exploring new ways to apply AI for business growth and creative projects. |
|
</p> |
|
</div> |
|
<div class="bg-white dark:bg-slate-800 p-6 rounded-xl shadow-md"> |
|
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center mb-4"> |
|
<i class="fas fa-hands-helping text-white text-xl"></i> |
|
</div> |
|
<h4 class="font-bold text-lg mb-2">Client-Centric</h4> |
|
<p class="text-gray-600 dark:text-gray-300"> |
|
Tailored solutions designed around each client's unique needs and goals. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="services" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-white/50 dark:bg-slate-800/50 rounded-3xl my-8"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Services</h2> |
|
<div class="w-24 h-1 gradient-bg mx-auto mb-6"></div> |
|
<p class="text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto"> |
|
Comprehensive AI solutions tailored to your business needs and creative aspirations. |
|
</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-white dark:bg-slate-800 p-8 rounded-2xl shadow-lg service-card transition duration-300"> |
|
<div class="w-16 h-16 bg-primary/10 dark:bg-accent/10 rounded-full flex items-center justify-center mb-6 service-icon transition duration-300"> |
|
<i class="fas fa-robot text-2xl text-primary dark:text-accent"></i> |
|
</div> |
|
<h3 class="text-2xl font-bold mb-4">AI Consulting Package</h3> |
|
<p class="text-gray-600 dark:text-gray-300 mb-6"> |
|
Up to 2 hours of AI tool matching, process optimization, and action plan tailored to your business. |
|
</p> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-2xl font-bold">$180</span> |
|
<a href="#contact" class="text-primary dark:text-accent font-semibold hover:underline">Get Started</a> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white dark:bg-slate-800 p-8 rounded-2xl shadow-lg service-card transition duration-300"> |
|
<div class="w-16 h-16 bg-primary/10 dark:bg-accent/10 rounded-full flex items-center justify-center mb-6 service-icon transition duration-300"> |
|
<i class="fas fa-laptop-code text-2xl text-primary dark:text-accent"></i> |
|
</div> |
|
<h3 class="text-2xl font-bold mb-4">AI Setup & Training</h3> |
|
<p class="text-gray-600 dark:text-gray-300 mb-6"> |
|
1-on-1 live session guiding you through integrating AI tools into your workflow. |
|
</p> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-2xl font-bold">$250</span> |
|
<a href="#contact" class="text-primary dark:text-accent font-semibold hover:underline">Get Started</a> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white dark:bg-slate-800 p-8 rounded-2xl shadow-lg service-card transition duration-300"> |
|
<div class="w-16 h-16 bg-primary/10 dark:bg-accent/10 rounded-full flex items-center justify-center mb-6 service-icon transition duration-300"> |
|
<i class="fas fa-image text-2xl text-primary dark:text-accent"></i> |
|
</div> |
|
<h3 class="text-2xl font-bold mb-4">Creative AI Visuals</h3> |
|
<p class="text-gray-600 dark:text-gray-300 mb-6"> |
|
High-quality, AI-generated images or graphics for branding, campaigns, or social media. |
|
</p> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-2xl font-bold">$100</span> |
|
<a href="#contact" class="text-primary dark:text-accent font-semibold hover:underline">Get Started</a> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white dark:bg-slate-800 p-8 rounded-2xl shadow-lg service-card transition duration-300"> |
|
<div class="w-16 h-16 bg-primary/10 dark:bg-accent/10 rounded-full flex items-center justify-center mb-6 service-icon transition duration-300"> |
|
<i class="fas fa-video text-2xl text-primary dark:text-accent"></i> |
|
</div> |
|
<h3 class="text-2xl font-bold mb-4">AI Video Creation</h3> |
|
<p class="text-gray-600 dark:text-gray-300 mb-6"> |
|
Short video content generated using AI tools, including scripting, styling, and visuals. |
|
</p> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-2xl font-bold">$150</span> |
|
<a href="#contact" class="text-primary dark:text-accent font-semibold hover:underline">Get Started</a> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white dark:bg-slate-800 p-8 rounded-2xl shadow-lg service-card transition duration-300"> |
|
<div class="w-16 h-16 bg-primary/10 dark:bg-accent/10 rounded-full flex items-center justify-center mb-6 service-icon transition duration-300"> |
|
<i class="fas fa-infinity text-2xl text-primary dark:text-accent"></i> |
|
</div> |
|
<h3 class="text-2xl font-bold mb-4">Monthly Retainer</h3> |
|
<p class="text-gray-600 dark:text-gray-300 mb-6"> |
|
Ongoing consulting, content creation, and implementation for businesses needing regular support. |
|
</p> |
|
<div class="flex justify-between items-center"> |
|
<span class="text-2xl font-bold">$600/mo</span> |
|
<a href="#contact" class="text-primary dark:text-accent font-semibold hover:underline">Get Started</a> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gradient-to-br from-primary to-accent p-8 rounded-2xl shadow-lg flex flex-col justify-between"> |
|
<div> |
|
<div class="w-16 h-16 bg-white/20 rounded-full flex items-center justify-center mb-6"> |
|
<i class="fas fa-star text-2xl text-white"></i> |
|
</div> |
|
<h3 class="text-2xl font-bold text-white mb-4">Custom Solution</h3> |
|
<p class="text-white/90 mb-6"> |
|
Need something different? Let's create a custom package that perfectly fits your unique requirements. |
|
</p> |
|
</div> |
|
<a href="#contact" class="bg-white text-primary font-bold py-3 px-6 rounded-full transition duration-300 hover:bg-gray-100 text-center"> |
|
Contact Us |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="portfolio" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Portfolio</h2> |
|
<div class="w-24 h-1 gradient-bg mx-auto mb-6"></div> |
|
<p class="text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto"> |
|
A selection of our recent AI consulting and creative projects. |
|
</p> |
|
</div> |
|
|
|
<div class="grid-gallery" id="portfolio-gallery"> |
|
|
|
<div class="gallery-item bg-white dark:bg-slate-800 rounded-xl overflow-hidden shadow-md"> |
|
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="AI Consulting Project" |
|
class="w-full h-full object-cover"> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 hover:opacity-100 transition-opacity duration-300"> |
|
<div> |
|
<h3 class="text-white text-xl font-bold">E-commerce Optimization</h3> |
|
<p class="text-white/80">AI-powered product recommendations increased sales by 32%</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="gallery-item bg-white dark:bg-slate-800 rounded-xl overflow-hidden shadow-md"> |
|
<img src="https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="AI Creative Project" |
|
class="w-full h-full object-cover"> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 hover:opacity-100 transition-opacity duration-300"> |
|
<div> |
|
<h3 class="text-white text-xl font-bold">Brand Visual Identity</h3> |
|
<p class="text-white/80">AI-generated brand assets for a tech startup</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="gallery-item bg-white dark:bg-slate-800 rounded-xl overflow-hidden shadow-md"> |
|
<img src="https://images.unsplash.com/photo-1677442136018-3b179a5d87f2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" |
|
alt="AI Video Project" |
|
class="w-full h-full object-cover"> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 hover:opacity-100 transition-opacity duration-300"> |
|
<div> |
|
<h3 class="text-white text-xl font-bold">Marketing Video Series</h3> |
|
<p class="text-white/80">AI-generated explainer videos for a SaaS company</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="gallery-item bg-white dark:bg-slate-800 rounded-xl overflow-hidden shadow-md"> |
|
<img src="https://images.unsplash.com/photo-1677442134563-e8a6e7b4345b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="AI Consulting Project" |
|
class="w-full h-full object-cover"> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 hover:opacity-100 transition-opacity duration-300"> |
|
<div> |
|
<h3 class="text-white text-xl font-bold">Process Automation</h3> |
|
<p class="text-white/80">Reduced operational costs by 45% with AI automation</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="gallery-item bg-white dark:bg-slate-800 rounded-xl overflow-hidden shadow-md"> |
|
<img src="https://images.unsplash.com/photo-1677442134563-e8a6e7b4345b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" |
|
alt="AI Creative Project" |
|
class="w-full h-full object-cover"> |
|
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 hover:opacity-100 transition-opacity duration-300"> |
|
<div> |
|
<h3 class="text-white text-xl font-bold">Social Media Content</h3> |
|
<p class="text-white/80">Monthly AI-generated content for a lifestyle brand</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="contact" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> |
|
<div class="bg-gradient-to-br from-primary to-accent rounded-3xl p-8 md:p-12 shadow-xl"> |
|
<div class="flex flex-col md:flex-row"> |
|
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8"> |
|
<h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready to Transform Your Business with AI?</h2> |
|
<p class="text-white/90 mb-6"> |
|
Whether you're looking for consulting, creative services, or a custom AI solution, we'd love to hear about your project. |
|
</p> |
|
<div class="bg-white/10 p-6 rounded-xl"> |
|
<h3 class="text-white font-bold mb-4">Connect With Us</h3> |
|
<a href="https://www.facebook.com/DanielkinAI" target="_blank" class="inline-flex items-center text-white hover:text-secondary transition"> |
|
<i class="fab fa-facebook-f mr-3"></i> |
|
<span>Facebook Page</span> |
|
</a> |
|
</div> |
|
</div> |
|
|
|
<div class="md:w-1/2"> |
|
<form id="contact-form" class="bg-white dark:bg-slate-800 p-6 rounded-xl shadow-lg"> |
|
<div class="mb-6"> |
|
<label for="name" class="block text-gray-700 dark:text-gray-300 font-medium mb-2">Your Name</label> |
|
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 dark:border-slate-600 focus:outline-none focus:ring-2 focus:ring-primary dark:focus:ring-accent bg-white dark:bg-slate-700 text-dark dark:text-light" required> |
|
</div> |
|
|
|
<div class="mb-6"> |
|
<label for="business" class="block text-gray-700 dark:text-gray-300 font-medium mb-2">Business Type</label> |
|
<input type="text" id="business" class="w-full px-4 py-3 rounded-lg border border-gray-300 dark:border-slate-600 focus:outline-none focus:ring-2 focus:ring-primary dark:focus:ring-accent bg-white dark:bg-slate-700 text-dark dark:text-light" required> |
|
</div> |
|
|
|
<div class="mb-6"> |
|
<label for="goals" class="block text-gray-700 dark:text-gray-300 font-medium mb-2">Your Goals</label> |
|
<textarea id="goals" rows="3" class="w-full px-4 py-3 rounded-lg border border-gray-300 dark:border-slate-600 focus:outline-none focus:ring-2 focus:ring-primary dark:focus:ring-accent bg-white dark:bg-slate-700 text-dark dark:text-light" required></textarea> |
|
</div> |
|
|
|
<div class="mb-6"> |
|
<label for="message" class="block text-gray-700 dark:text-gray-300 font-medium mb-2">Message</label> |
|
<textarea id="message" rows="3" class="w-full px-4 py-3 rounded-lg border border-gray-300 dark:border-slate-600 focus:outline-none focus:ring-2 focus:ring-primary dark:focus:ring-accent bg-white dark:bg-slate-700 text-dark dark:text-light" required></textarea> |
|
</div> |
|
|
|
<button type="submit" class="w-full gradient-bg text-white font-bold py-3 px-6 rounded-full hover:opacity-90 transition duration-300"> |
|
Send Message |
|
</button> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
</main> |
|
|
|
|
|
<div class="admin-panel fixed inset-0 bg-black/80 z-50 overflow-y-auto hidden"> |
|
<div class="min-h-screen flex items-center justify-center p-4"> |
|
<div class="bg-white dark:bg-slate-800 rounded-2xl shadow-2xl w-full max-w-4xl max-h-screen overflow-y-auto"> |
|
<div class="p-6 border-b border-gray-200 dark:border-slate-700 flex justify-between items-center"> |
|
<h2 class="text-2xl font-bold">Admin Dashboard</h2> |
|
<button id="close-admin" class="text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200"> |
|
<i class="fas fa-times text-2xl"></i> |
|
</button> |
|
</div> |
|
|
|
<div class="p-6"> |
|
<div class="mb-8"> |
|
<h3 class="text-xl font-semibold mb-4">Manage Portfolio</h3> |
|
<div class="bg-gray-100 dark:bg-slate-700 p-4 rounded-lg mb-4"> |
|
<h4 class="font-medium mb-2">Add New Portfolio Item</h4> |
|
<form id="add-portfolio-form" class="space-y-4"> |
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-4"> |
|
<div> |
|
<label class="block text-sm font-medium mb-1">Title</label> |
|
<input type="text" class="w-full px-3 py-2 border rounded-lg bg-white dark:bg-slate-600"> |
|
</div> |
|
<div> |
|
<label class="block text-sm font-medium mb-1">Category</label> |
|
<select class="w-full px-3 py-2 border rounded-lg bg-white dark:bg-slate-600"> |
|
<option>Consulting</option> |
|
<option>Creative</option> |
|
<option>Video</option> |
|
<option>Other</option> |
|
</select> |
|
</div> |
|
</div> |
|
<div> |
|
<label class="block text-sm font-medium mb-1">Description</label> |
|
<textarea rows="2" class="w-full px-3 py-2 border rounded-lg bg-white dark:bg-slate-600"></textarea> |
|
</div> |
|
<div> |
|
<label class="block text-sm font-medium mb-1">Image URL</label> |
|
<input type="text" class="w-full px-3 py-2 border rounded-lg bg-white dark:bg-slate-600"> |
|
</div> |
|
<div class="flex justify-end"> |
|
<button type="submit" class="bg-primary dark:bg-accent text-white px-4 py-2 rounded-lg hover:bg-blue-700 dark:hover:bg-purple-700 transition"> |
|
Add Item |
|
</button> |
|
</div> |
|
</form> |
|
</div> |
|
|
|
<div class="bg-gray-100 dark:bg-slate-700 p-4 rounded-lg"> |
|
<h4 class="font-medium mb-2">Current Portfolio Items</h4> |
|
<div class="overflow-x-auto"> |
|
<table class="min-w-full bg-white dark:bg-slate-600 rounded-lg overflow-hidden"> |
|
<thead> |
|
<tr class="bg-gray-200 dark:bg-slate-700"> |
|
<th class="py-2 px-4 text-left">Title</th> |
|
<th class="py-2 px-4 text-left">Category</th> |
|
<th class="py-2 px-4 text-left">Actions</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<tr class="border-b border-gray-200 dark:border-slate-700"> |
|
<td class="py-3 px-4">E-commerce Optimization</td> |
|
<td class="py-3 px-4">Consulting</td> |
|
<td class="py-3 px-4"> |
|
<button class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300 mr-2"> |
|
<i class="fas fa-edit"></i> |
|
</button> |
|
<button class="text-red-600 dark:text-red-400 hover:text-red-800 dark:hover:text-red-300"> |
|
<i class="fas fa-trash"></i> |
|
</button> |
|
</td> |
|
</tr> |
|
<tr class="border-b border-gray-200 dark:border-slate-700"> |
|
<td class="py-3 px-4">Brand Visual Identity</td> |
|
<td class="py-3 px-4">Creative</td> |
|
<td class="py-3 px-4"> |
|
<button class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300 mr-2"> |
|
<i class="fas fa-edit"></i> |
|
</button> |
|
<button class="text-red-600 dark:text-red-400 hover:text-red-800 dark:hover:text-red-300"> |
|
<i class="fas fa-trash"></i> |
|
</button> |
|
</td> |
|
</tr> |
|
<tr> |
|
<td class="py-3 px-4">Marketing Video Series</td> |
|
<td class="py-3 px-4">Video</td> |
|
<td class="py-3 px-4"> |
|
<button class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300 mr-2"> |
|
<i class="fas fa-edit"></i> |
|
</button> |
|
<button class="text-red-600 dark:text-red-400 hover:text-red-800 dark:hover:text-red-300"> |
|
<i class="fas fa-trash"></i> |
|
</button> |
|
</td> |
|
</tr> |
|
</tbody> |
|
</table> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mb-8"> |
|
<h3 class="text-xl font-semibold mb-4">Manage Services</h3> |
|
<div class="bg-gray-100 dark:bg-slate-700 p-4 rounded-lg"> |
|
<div class="overflow-x-auto"> |
|
<table class="min-w-full bg-white dark:bg-slate-600 rounded-lg overflow-hidden"> |
|
<thead> |
|
<tr class="bg-gray-200 dark:bg-slate-700"> |
|
<th class="py-2 px-4 text-left">Service</th> |
|
<th class="py-2 px-4 text-left">Price</th> |
|
<th class="py-2 px-4 text-left">Description</th> |
|
<th class="py-2 px-4 text-left">Actions</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<tr class="border-b border-gray-200 dark:border-slate-700"> |
|
<td class="py-3 px-4">AI Consulting Package</td> |
|
<td class="py-3 px-4">$180</td> |
|
<td class="py-3 px-4">Up to 2 hours of AI tool matching...</td> |
|
<td class="py-3 px-4"> |
|
<button class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300"> |
|
<i class="fas fa-edit"></i> |
|
</button> |
|
</td> |
|
</tr> |
|
<tr class="border-b border-gray-200 dark:border-slate-700"> |
|
<td class="py-3 px-4">AI Setup & Training</td> |
|
<td class="py-3 px-4">$250</td> |
|
<td class="py-3 px-4">1-on-1 live session guiding...</td> |
|
<td class="py-3 px-4"> |
|
<button class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300"> |
|
<i class="fas fa-edit"></i> |
|
</button> |
|
</td> |
|
</tr> |
|
<tr> |
|
<td class="py-3 px-4">Monthly Retainer</td> |
|
<td class="py-3 px-4">$600/mo</td> |
|
<td class="py-3 px-4">Ongoing consulting, content creation...</td> |
|
<td class="py-3 px-4"> |
|
<button class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300"> |
|
<i class="fas fa-edit"></i> |
|
</button> |
|
</td> |
|
</tr> |
|
</tbody> |
|
</table> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div> |
|
<h3 class="text-xl font-semibold mb-4">Website Settings</h3> |
|
<div class="bg-gray-100 dark:bg-slate-700 p-4 rounded-lg"> |
|
<form class="space-y-4"> |
|
<div> |
|
<label class="block text-sm font-medium mb-1">Maintenance Mode</label> |
|
<label class="inline-flex items-center cursor-pointer"> |
|
<input type="checkbox" value="" class="sr-only peer"> |
|
<div class="relative w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full rtl:peer-checked:after:-translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:start-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-600"></div> |
|
<span class="ms-3 text-sm font-medium text-gray-900 dark:text-gray-300">Enable</span> |
|
</label> |
|
</div> |
|
<div> |
|
<label class="block text-sm font-medium mb-1">Contact Form Email</label> |
|
<input type="email" class="w-full px-3 py-2 border rounded-lg bg-white dark:bg-slate-600" value="contact@danielkinai.com"> |
|
</div> |
|
<div class="flex justify-end"> |
|
<button type="submit" class="bg-primary dark:bg-accent text-white px-4 py-2 rounded-lg hover:bg-blue-700 dark:hover:bg-purple-700 transition"> |
|
Save Settings |
|
</button> |
|
</div> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<footer class="bg-white dark:bg-slate-800 border-t border-gray-200 dark:border-slate-700 py-12 px-4 sm:px-6 lg:px-8"> |
|
<div class="max-w-7xl mx-auto"> |
|
<div class="flex flex-col md:flex-row justify-between items-center"> |
|
<div class="mb-8 md:mb-0"> |
|
<a href="#home" class="text-2xl font-bold gradient-text">Danielkin AI</a> |
|
<p class="text-gray-600 dark:text-gray-300 mt-2 max-w-md"> |
|
Creative Intelligence for Real Business Impact |
|
</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-2 md:grid-cols-3 gap-8 md:gap-16"> |
|
<div> |
|
<h3 class="text-sm font-semibold text-gray-500 dark:text-gray-400 uppercase tracking-wider mb-4">Navigation</h3> |
|
<ul class="space-y-2"> |
|
<li><a href="#home" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition">Home</a></li> |
|
<li><a href="#about" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition">About</a></li> |
|
<li><a href="#services" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition">Services</a></li> |
|
<li><a href="#portfolio" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition">Portfolio</a></li> |
|
<li><a href="#contact" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition">Contact</a></li> |
|
</ul> |
|
</div> |
|
|
|
<div> |
|
<h3 class="text-sm font-semibold text-gray-500 dark:text-gray-400 uppercase tracking-wider mb-4">Services</h3> |
|
<ul class="space-y-2"> |
|
<li><a href="#services" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition">AI Consulting</a></li> |
|
<li><a href="#services" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition">AI Training</a></li> |
|
<li><a href="#services" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition">Creative Visuals</a></li> |
|
<li><a href="#services" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition">Video Creation</a></li> |
|
</ul> |
|
</div> |
|
|
|
<div> |
|
<h3 class="text-sm font-semibold text-gray-500 dark:text-gray-400 uppercase tracking-wider mb-4">Connect</h3> |
|
<ul class="space-y-2"> |
|
<li> |
|
<a href="https://www.facebook.com/DanielkinAI" target="_blank" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition inline-flex items-center"> |
|
<i class="fab fa-facebook-f mr-2"></i> Facebook |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition inline-flex items-center"> |
|
<i class="fab fa-twitter mr-2"></i> Twitter |
|
</a> |
|
</li> |
|
<li> |
|
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-primary dark:hover:text-accent transition inline-flex items-center"> |
|
<i class="fab fa-linkedin-in mr-2"></i> LinkedIn |
|
</a> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-12 pt-8 border-t border-gray-200 dark:border-slate-700 flex flex-col md:flex-row justify-between items-center"> |
|
<p class="text-gray-500 dark:text-gray-400 text-sm"> |
|
© 2023 Danielkin AI. All rights reserved. |
|
</p> |
|
<div class="mt-4 md:mt-0 flex space-x-6"> |
|
<a href="#" class="text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200"> |
|
<span class="sr-only">Privacy Policy</span> |
|
Privacy |
|
</a> |
|
<a href="#" class="text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200"> |
|
<span class="sr-only">Terms</span> |
|
Terms |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
const toggle = document.getElementById('toggle'); |
|
const toggleMobile = document.getElementById('toggle-mobile'); |
|
|
|
|
|
if (localStorage.getItem('darkMode') === 'enabled') { |
|
document.documentElement.classList.add('dark'); |
|
toggle.checked = true; |
|
if (toggleMobile) toggleMobile.checked = true; |
|
} |
|
|
|
|
|
function toggleDarkMode() { |
|
if (document.documentElement.classList.contains('dark')) { |
|
document.documentElement.classList.remove('dark'); |
|
localStorage.setItem('darkMode', 'disabled'); |
|
} else { |
|
document.documentElement.classList.add('dark'); |
|
localStorage.setItem('darkMode', 'enabled'); |
|
} |
|
} |
|
|
|
toggle.addEventListener('change', toggleDarkMode); |
|
if (toggleMobile) toggleMobile.addEventListener('change', toggleDarkMode); |
|
|
|
|
|
const mobileMenuButton = document.getElementById('mobile-menu-button'); |
|
const mobileMenu = document.getElementById('mobile-menu'); |
|
|
|
mobileMenuButton.addEventListener('click', () => { |
|
mobileMenu.classList.toggle('hidden'); |
|
}); |
|
|
|
|
|
const adminToggle = document.getElementById('admin-toggle'); |
|
const adminToggleMobile = document.getElementById('admin-toggle-mobile'); |
|
const closeAdmin = document.getElementById('close-admin'); |
|
const adminPanel = document.querySelector('.admin-panel'); |
|
|
|
function toggleAdminPanel() { |
|
document.body.classList.toggle('show-admin'); |
|
adminPanel.classList.toggle('hidden'); |
|
} |
|
|
|
adminToggle.addEventListener('click', toggleAdminPanel); |
|
if (adminToggleMobile) adminToggleMobile.addEventListener('click', toggleAdminPanel); |
|
closeAdmin.addEventListener('click', toggleAdminPanel); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
|
|
const targetId = this.getAttribute('href'); |
|
if (targetId === '#') return; |
|
|
|
const targetElement = document.querySelector(targetId); |
|
if (targetElement) { |
|
|
|
if (!mobileMenu.classList.contains('hidden')) { |
|
mobileMenu.classList.add('hidden'); |
|
} |
|
|
|
window.scrollTo({ |
|
top: targetElement.offsetTop - 80, |
|
behavior: 'smooth' |
|
}); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
const contactForm = document.getElementById('contact-form'); |
|
if (contactForm) { |
|
contactForm.addEventListener('submit', function(e) { |
|
e.preventDefault(); |
|
|
|
|
|
const name = document.getElementById('name').value; |
|
const business = document.getElementById('business').value; |
|
const goals = document.getElementById('goals').value; |
|
const message = document.getElementById('message').value; |
|
|
|
|
|
|
|
alert(`Thank you, ${name}! Your message has been received. We'll contact you soon about your ${business} business.`); |
|
|
|
|
|
contactForm.reset(); |
|
}); |
|
} |
|
|
|
|
|
const addPortfolioForm = document.getElementById('add-portfolio-form'); |
|
if (addPortfolioForm) { |
|
addPortfolioForm.addEventListener('submit', function(e) { |
|
e.preventDefault(); |
|
alert('Portfolio item added successfully!'); |
|
addPortfolioForm.reset(); |
|
}); |
|
} |
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=DanielkinAI/danielkin-ai-deepsite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |