sample-web / index.html
Avinashavi04's picture
undefined - Initial Deployment
ea56803 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alex Carter | Creative Designer & Developer</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: '#6366f1',
secondary: '#8b5cf6',
dark: '#0f172a',
light: '#f8fafc',
},
animation: {
'float': 'float 6s ease-in-out infinite',
'float-reverse': 'float-reverse 5s ease-in-out infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' },
},
'float-reverse': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(20px)' },
}
}
}
}
}
</script>
<style>
.bg-pattern {
background-color: #0f172a;
background-image:
radial-gradient(at 80% 0%, hsla(189,100%,56%,0.15) 0px, transparent 50%),
radial-gradient(at 0% 50%, hsla(355,100%,93%,0.15) 0px, transparent 50%);
}
.project-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.project-card:hover {
transform: translateY(-10px) scale(1.02);
}
.project-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(45deg, #6366f1, #8b5cf6);
z-index: -1;
transform: translateZ(-1px);
border-radius: 1rem;
opacity: 0;
transition: opacity 0.3s ease;
}
.project-card:hover::before {
opacity: 0.2;
}
.skill-pill {
transition: all 0.3s ease;
}
.skill-pill:hover {
transform: scale(1.05);
box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}
.text-gradient {
background: linear-gradient(45deg, #6366f1, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background: linear-gradient(90deg, #6366f1, #8b5cf6);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.active-nav::after {
width: 100%;
}
</style>
</head>
<body class="bg-dark text-light font-sans antialiased overflow-x-hidden">
<!-- Navigation -->
<nav class="fixed w-full z-50 backdrop-blur-md bg-dark/80 border-b border-gray-800">
<div class="max-w-7xl mx-auto px-6 py-4 flex justify-between items-center">
<a href="#" class="text-2xl font-bold text-gradient">AC.</a>
<div class="hidden md:flex space-x-8">
<a href="#home" class="nav-link active-nav">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#work" class="nav-link">Work</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
<button id="mobile-menu-button" class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-dark/95 backdrop-blur-lg px-6 py-4 border-t border-gray-800">
<div class="flex flex-col space-y-4">
<a href="#home" class="nav-link active-nav py-2">Home</a>
<a href="#about" class="nav-link py-2">About</a>
<a href="#work" class="nav-link py-2">Work</a>
<a href="#skills" class="nav-link py-2">Skills</a>
<a href="#contact" class="nav-link py-2">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center bg-pattern pt-20">
<div class="max-w-7xl mx-auto px-6 py-16 grid md:grid-cols-2 gap-12 items-center">
<div class="relative">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Hi, I'm <span class="text-gradient">Alex Carter</span></h1>
<h2 class="text-2xl md:text-3xl font-medium mb-6">Creative Designer & Developer</h2>
<p class="text-gray-400 mb-8 max-w-lg">I craft immersive digital experiences that blend beauty with functionality. With 7+ years of expertise, I transform ideas into pixel-perfect realities.</p>
<div class="flex flex-wrap gap-4">
<a href="#work" class="px-8 py-3 bg-gradient-to-r from-primary to-secondary rounded-full font-medium hover:shadow-lg hover:shadow-primary/30 transition-all">View Work</a>
<a href="#contact" class="px-8 py-3 border border-gray-700 rounded-full font-medium hover:bg-gray-800/50 transition-all">Contact Me</a>
</div>
<div class="absolute -top-20 -left-20 w-40 h-40 rounded-full bg-primary/10 blur-xl"></div>
<div class="absolute bottom-0 -right-20 w-60 h-60 rounded-full bg-secondary/10 blur-xl"></div>
</div>
<div class="relative flex justify-center">
<div class="relative w-64 h-64 md:w-80 md:h-80 rounded-full overflow-hidden border-4 border-primary/20">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80"
alt="Alex Carter"
class="w-full h-full object-cover">
</div>
<div class="absolute -z-10 top-10 -left-10 w-64 h-64 rounded-3xl border-2 border-primary/30 animation-float"></div>
<div class="absolute -z-10 bottom-10 -right-10 w-64 h-64 rounded-3xl border-2 border-secondary/30 animation-float-reverse"></div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-dark">
<div class="max-w-7xl mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center"><span class="text-gradient">About</span> Me</h2>
<div class="grid md:grid-cols-2 gap-12 items-center">
<div class="relative">
<div class="bg-gray-800/50 p-8 rounded-3xl border border-gray-700 backdrop-blur-sm">
<h3 class="text-2xl font-bold mb-4">My Story</h3>
<p class="text-gray-400 mb-6">I began my journey in 2015 with a passion for creating beautiful interfaces. Since then, I've worked with startups and Fortune 500 companies to deliver award-winning digital products.</p>
<p class="text-gray-400 mb-6">My approach combines technical precision with artistic vision, ensuring every project not only functions flawlessly but also tells a compelling visual story.</p>
<div class="flex items-center space-x-4">
<div class="flex-1">
<div class="text-3xl font-bold text-gradient">50+</div>
<div class="text-gray-400">Projects Completed</div>
</div>
<div class="flex-1">
<div class="text-3xl font-bold text-gradient">100%</div>
<div class="text-gray-400">Client Satisfaction</div>
</div>
<div class="flex-1">
<div class="text-3xl font-bold text-gradient">7+</div>
<div class="text-gray-400">Years Experience</div>
</div>
</div>
</div>
<div class="absolute -z-10 top-10 -left-10 w-40 h-40 rounded-full bg-primary/10 blur-xl"></div>
</div>
<div>
<div class="grid grid-cols-2 gap-4">
<div class="bg-gray-800/50 p-6 rounded-2xl border border-gray-700 hover:border-primary transition-all duration-300">
<div class="text-primary text-3xl mb-4">
<i class="fas fa-palette"></i>
</div>
<h4 class="font-bold mb-2">UI/UX Design</h4>
<p class="text-gray-400 text-sm">Creating intuitive interfaces with pixel-perfect precision and user-centered design principles.</p>
</div>
<div class="bg-gray-800/50 p-6 rounded-2xl border border-gray-700 hover:border-primary transition-all duration-300">
<div class="text-primary text-3xl mb-4">
<i class="fas fa-code"></i>
</div>
<h4 class="font-bold mb-2">Web Development</h4>
<p class="text-gray-400 text-sm">Building performant, responsive websites with modern frameworks and clean code.</p>
</div>
<div class="bg-gray-800/50 p-6 rounded-2xl border border-gray-700 hover:border-primary transition-all duration-300">
<div class="text-primary text-3xl mb-4">
<i class="fas fa-mobile-alt"></i>
</div>
<h4 class="font-bold mb-2">Mobile Design</h4>
<p class="text-gray-400 text-sm">Designing mobile experiences that engage users and drive conversions.</p>
</div>
<div class="bg-gray-800/50 p-6 rounded-2xl border border-gray-700 hover:border-primary transition-all duration-300">
<div class="text-primary text-3xl mb-4">
<i class="fas fa-chart-line"></i>
</div>
<h4 class="font-bold mb-2">Brand Strategy</h4>
<p class="text-gray-400 text-sm">Developing cohesive brand identities that resonate with target audiences.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Work Section -->
<section id="work" class="py-20 bg-gray-900">
<div class="max-w-7xl mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-center"><span class="text-gradient">Featured</span> Work</h2>
<p class="text-gray-400 text-center mb-12 max-w-2xl mx-auto">A curated selection of projects that showcase my design philosophy and technical capabilities.</p>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="project-card relative bg-gray-800 rounded-2xl overflow-hidden border border-gray-700">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80"
alt="Nexus Dashboard"
class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">Nexus Dashboard</h3>
<span class="text-xs px-2 py-1 bg-primary/10 text-primary rounded-full">2023</span>
</div>
<p class="text-gray-400 text-sm mb-4">A comprehensive analytics dashboard with real-time data visualization for enterprise clients.</p>
<div class="flex flex-wrap gap-2">
<span class="skill-pill text-xs px-3 py-1 bg-gray-700 rounded-full">React</span>
<span class="skill-pill text-xs px-3 py-1 bg-gray-700 rounded-full">D3.js</span>
<span class="skill-pill text-xs px-3 py-1 bg-gray-700 rounded-full">Tailwind</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card relative bg-gray-800 rounded-2xl overflow-hidden border border-gray-700">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1169&q=80"
alt="Aurora App"
class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">Aurora Mobile App</h3>
<span class="text-xs px-2 py-1 bg-primary/10 text-primary rounded-full">2022</span>
</div>
<p class="text-gray-400 text-sm mb-4">A meditation and mindfulness app featuring custom illustrations and smooth animations.</p>
<div class="flex flex-wrap gap-2">
<span class="skill-pill text-xs px-3 py-1 bg-gray-700 rounded-full">Figma</span>
<span class="skill-pill text-xs px-3 py-1 bg-gray-700 rounded-full">Swift</span>
<span class="skill-pill text-xs px-3 py-1 bg-gray-700 rounded-full">Lottie</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="project-card relative bg-gray-800 rounded-2xl overflow-hidden border border-gray-700">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="E-commerce Platform"
class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">E-commerce Platform</h3>
<span class="text-xs px-2 py-1 bg-primary/10 text-primary rounded-full">2021</span>
</div>
<p class="text-gray-400 text-sm mb-4">A high-conversion online store with personalized recommendations and AR product previews.</p>
<div class="flex flex-wrap gap-2">
<span class="skill-pill text-xs px-3 py-1 bg-gray-700 rounded-full">Shopify</span>
<span class="skill-pill text-xs px-3 py-1 bg-gray-700 rounded-full">Three.js</span>
<span class="skill-pill text-xs px-3 py-1 bg-gray-700 rounded-full">Liquid</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-flex items-center px-6 py-3 border border-gray-700 rounded-full font-medium hover:bg-gray-800/50 transition-all group">
View All Projects
<i class="fas fa-arrow-right ml-2 group-hover:translate-x-1 transition-transform"></i>
</a>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 bg-dark">
<div class="max-w-7xl mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-center">My <span class="text-gradient">Skills</span></h2>
<p class="text-gray-400 text-center mb-12 max-w-2xl mx-auto">The tools and technologies I use to bring ideas to life.</p>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Design Skills -->
<div class="bg-gray-800/50 p-6 rounded-2xl border border-gray-700">
<div class="text-primary text-4xl mb-4">
<i class="fas fa-paint-brush"></i>
</div>
<h3 class="text-xl font-bold mb-4">Design</h3>
<div class="space-y-3">
<div>
<div class="flex justify-between mb-1">
<span>UI/UX Design</span>
<span>95%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-gradient-to-r from-primary to-secondary h-2 rounded-full" style="width: 95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>Wireframing</span>
<span>90%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-gradient-to-r from-primary to-secondary h-2 rounded-full" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>Prototyping</span>
<span>85%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-gradient-to-r from-primary to-secondary h-2 rounded-full" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>Branding</span>
<span>80%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-gradient-to-r from-primary to-secondary h-2 rounded-full" style="width: 80%"></div>
</div>
</div>
</div>
</div>
<!-- Development Skills -->
<div class="bg-gray-800/50 p-6 rounded-2xl border border-gray-700">
<div class="text-primary text-4xl mb-4">
<i class="fas fa-code"></i>
</div>
<h3 class="text-xl font-bold mb-4">Development</h3>
<div class="space-y-3">
<div>
<div class="flex justify-between mb-1">
<span>HTML/CSS</span>
<span>98%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-gradient-to-r from-primary to-secondary h-2 rounded-full" style="width: 98%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>JavaScript</span>
<span>95%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-gradient-to-r from-primary to-secondary h-2 rounded-full" style="width: 95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>React</span>
<span>90%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-gradient-to-r from-primary to-secondary h-2 rounded-full" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>Node.js</span>
<span>85%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-gradient-to-r from-primary to-secondary h-2 rounded-full" style="width: 85%"></div>
</div>
</div>
</div>
</div>
<!-- Tools -->
<div class="bg-gray-800/50 p-6 rounded-2xl border border-gray-700">
<div class="text-primary text-4xl mb-4">
<i class="fas fa-tools"></i>
</div>
<h3 class="text-xl font-bold mb-4">Tools</h3>
<div class="flex flex-wrap gap-3">
<span class="skill-pill px-4 py-2 bg-gray-700 rounded-full flex items-center">
<i class="fab fa-figma text-primary mr-2"></i>
Figma
</span>
<span class="skill-pill px-4 py-2 bg-gray-700 rounded-full flex items-center">
<i class="fab fa-adobe text-primary mr-2"></i>
Photoshop
</span>
<span class="skill-pill px-4 py-2 bg-gray-700 rounded-full flex items-center">
<i class="fab fa-sketch text-primary mr-2"></i>
Sketch
</span>
<span class="skill-pill px-4 py-2 bg-gray-700 rounded-full flex items-center">
<i class="fas fa-terminal text-primary mr-2"></i>
VS Code
</span>
<span class="skill-pill px-4 py-2 bg-gray-700 rounded-full flex items-center">
<i class="fab fa-git-alt text-primary mr-2"></i>
Git
</span>
<span class="skill-pill px-4 py-2 bg-gray-700 rounded-full flex items-center">
<i class="fab fa-trello text-primary mr-2"></i>
Trello
</span>
</div>
</div>
<!-- Other Skills -->
<div class="bg-gray-800/50 p-6 rounded-2xl border border-gray-700">
<div class="text-primary text-4xl mb-4">
<i class="fas fa-star"></i>
</div>
<h3 class="text-xl font-bold mb-4">Other Skills</h3>
<div class="grid grid-cols-2 gap-4">
<div class="flex items-center space-x-2">
<div class="w-2 h-2 rounded-full bg-primary"></div>
<span>Responsive Design</span>
</div>
<div class="flex items-center space-x-2">
<div class="w-2 h-2 rounded-full bg-primary"></div>
<span>Animation</span>
</div>
<div class="flex items-center space-x-2">
<div class="w-2 h-2 rounded-full bg-primary"></div>
<span>SEO Optimization</span>
</div>
<div class="flex items-center space-x-2">
<div class="w-2 h-2 rounded-full bg-primary"></div>
<span>Performance</span>
</div>
<div class="flex items-center space-x-2">
<div class="w-2 h-2 rounded-full bg-primary"></div>
<span>Accessibility</span>
</div>
<div class="flex items-center space-x-2">
<div class="w-2 h-2 rounded-full bg-primary"></div>
<span>User Research</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-gray-900">
<div class="max-w-7xl mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center">Client <span class="text-gradient">Testimonials</span></h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-800/50 p-8 rounded-2xl border border-gray-700">
<div class="flex items-center mb-6">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-gray-400 text-sm">CEO, TechStart Inc.</p>
</div>
</div>
<p class="text-gray-300 italic mb-6">"Alex transformed our entire digital presence. Their designs perfectly captured our brand identity while dramatically improving user engagement metrics."</p>
<div class="flex space-x-1 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-800/50 p-8 rounded-2xl border border-gray-700">
<div class="flex items-center mb-6">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Michael Chen</h4>
<p class="text-gray-400 text-sm">Product Lead, InnovateCo</p>
</div>
</div>
<p class="text-gray-300 italic mb-6">"Working with Alex was a game-changer. They delivered a mobile app that exceeded our expectations in both design and performance, on time and on budget."</p>
<div class="flex space-x-1 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-800/50 p-8 rounded-2xl border border-gray-700">
<div class="flex items-center mb-6">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Emma Rodriguez" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Emma Rodriguez</h4>
<p class="text-gray-400 text-sm">Marketing Director, BrandVibe</p>
</div>
</div>
<p class="text-gray-300 italic mb-6">"Alex's creative vision and technical expertise helped us launch an e-commerce site that increased conversions by 150%. Truly outstanding work!"</p>
<div class="flex space-x-1 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-dark">
<div class="max-w-7xl mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-center">Get In <span class="text-gradient">Touch</span></h2>
<p class="text-gray-400 text-center mb-12 max-w-2xl mx-auto">Have a project in mind or want to discuss potential collaboration? I'd love to hear from you.</p>
<div class="grid md:grid-cols-2 gap-12">
<div>
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium mb-2">Full Name</label>
<input type="text" id="name" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent" placeholder="Your name">
</div>
<div>
<label for="email" class="block text-sm font-medium mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent" placeholder="[email protected]">
</div>
<div>
<label for="subject" class="block text-sm font-medium mb-2">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent" placeholder="Project discussion">
</div>
<div>
<label for="message" class="block text-sm font-medium mb-2">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent" placeholder="Tell me about your project..."></textarea>
</div>
<button type="submit" class="w-full px-6 py-3 bg-gradient-to-r from-primary to-secondary rounded-lg font-medium hover:shadow-lg hover:shadow-primary/30 transition-all">Send Message</button>
</form>
</div>
<div>
<div class="bg-gray-800/50 p-8 rounded-2xl border border-gray-700 h-full">
<h3 class="text-xl font-bold mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="text-primary text-xl mt-1 mr-4">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-medium mb-1">Location</h4>
<p class="text-gray-400">San Francisco, CA</p>
</div>
</div>
<div class="flex items-start">
<div class="text-primary text-xl mt-1 mr-4">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-medium mb-1">Email</h4>
<p class="text-gray-400">[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="text-primary text-xl mt-1 mr-4">
<i class="fas fa-phone-alt"></i>
</div>
<div>
<h4 class="font-medium mb-1">Phone</h4>
<p class="text-gray-400">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="text-primary text-xl mt-1 mr-4">
<i class="fas fa-clock"></i>
</div>
<div>
<h4 class="font-medium mb-1">Availability</h4>
<p class="text-gray-400">Monday - Friday, 9AM - 5PM PST</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-medium mb-4">Follow Me</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-primary transition-all">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-primary transition-all">
<i class="fab fa-dribbble"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-primary transition-all">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-primary transition-all">
<i class="fab fa-github"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-primary transition-all">
<i class="fab fa-behance"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 bg-gray-900 border-t border-gray-800">
<div class="max-w-7xl mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<a href="#" class="text-2xl font-bold text-gradient">AC.</a>
<p class="text-gray-400 mt-2">© 2023 Alex Carter. All rights reserved.</p>
</div>
<div class="flex flex-col md:flex-row md:space-x-8 space-y-4 md:space-y-0 text-sm">
<a href="#" class="text-gray-400 hover:text-white transition-colors">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Update active nav link
document.querySelectorAll('.nav-link').forEach(link => {
link.classList.remove('active-nav');
});
this.classList.add('active-nav');
});
});
// Update active nav link on scroll
window.addEventListener('scroll', () => {
const scrollPosition = window.scrollY;
document.querySelectorAll('section').forEach(section => {
const sectionTop = section.offsetTop - 100;
const sectionHeight = section.offsetHeight;
const sectionId = section.getAttribute('id');
if (scrollPosition >= sectionTop && scrollPosition < sectionTop + sectionHeight) {
document.querySelectorAll('.nav-link').forEach(link => {
link.classList.remove('active-nav');
if (link.getAttribute('href') === `#${sectionId}`) {
link.classList.add('active-nav');
}
});
}
});
});
// Animate elements when they come into view
const animateOnScroll = () => {
const elements = document.querySelectorAll('.project-card, .skill-pill');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const windowHeight = window.innerHeight;
if (elementPosition < windowHeight - 100) {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}
});
};
// Set initial state
document.querySelectorAll('.project-card, .skill-pill').forEach(element => {
element.style.opacity = '0';
element.style.transform = 'translateY(20px)';
element.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
});
window.addEventListener('scroll', animateOnScroll);
window.addEventListener('load', animateOnScroll);
</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=Avinashavi04/sample-web" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>