deep-site-experiment / index.html
onurozen's picture
Add 1 files
45fc580 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexus | Modern Digital Solutions</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">
<style>
.hero-gradient {
background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.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);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #4f46e5;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-white bg-opacity-90 backdrop-blur-sm z-50 shadow-sm">
<div class="max-w-7xl mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-indigo-600 flex items-center justify-center text-white font-bold text-xl">N</div>
<span class="ml-3 text-xl font-semibold">Nexus</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="nav-link">Home</a>
<a href="#services" class="nav-link">Services</a>
<a href="#work" class="nav-link">Work</a>
<a href="#about" class="nav-link">About</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
<button class="md:hidden text-gray-600 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-gradient min-h-screen flex items-center pt-20">
<div class="max-w-7xl mx-auto px-6 py-20 md:py-32 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-5xl lg:text-6xl font-bold leading-tight mb-6">
Building digital experiences that <span class="text-indigo-600">matter</span>
</h1>
<p class="text-xl text-gray-600 mb-8 max-w-lg">
We help startups and enterprises create beautiful, functional digital products that users love.
</p>
<div class="flex space-x-4">
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-8 py-3 rounded-lg font-medium transition duration-300">
Get Started
</button>
<button class="border border-gray-300 hover:bg-gray-50 px-8 py-3 rounded-lg font-medium transition duration-300">
Learn More
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://illustrations.popsy.co/amber/digital-nomad.svg" alt="Digital Illustration" class="w-full max-w-md animate-float">
</div>
</div>
</section>
<!-- Clients Section -->
<section class="py-12 bg-white">
<div class="max-w-7xl mx-auto px-6">
<p class="text-center text-gray-500 mb-8">Trusted by innovative companies worldwide</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16 opacity-70">
<img src="https://logo.clearbit.com/airbnb.com" alt="Airbnb" class="h-8">
<img src="https://logo.clearbit.com/slack.com" alt="Slack" class="h-8">
<img src="https://logo.clearbit.com/spotify.com" alt="Spotify" class="h-8">
<img src="https://logo.clearbit.com/netflix.com" alt="Netflix" class="h-8">
<img src="https://logo.clearbit.com/stripe.com" alt="Stripe" class="h-8">
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">What We Do Best</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
Comprehensive digital solutions tailored to your business needs
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-sm card-hover">
<div class="w-14 h-14 rounded-lg bg-indigo-100 text-indigo-600 flex items-center justify-center mb-6">
<i class="fas fa-code text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Web Development</h3>
<p class="text-gray-600">
Custom, high-performance websites built with modern technologies like Next.js, React, and TailwindCSS.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm card-hover">
<div class="w-14 h-14 rounded-lg bg-blue-100 text-blue-600 flex items-center justify-center mb-6">
<i class="fas fa-mobile-alt text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Mobile Apps</h3>
<p class="text-gray-600">
Cross-platform mobile applications that deliver seamless user experiences on any device.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm card-hover">
<div class="w-14 h-14 rounded-lg bg-purple-100 text-purple-600 flex items-center justify-center mb-6">
<i class="fas fa-paint-brush text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">UI/UX Design</h3>
<p class="text-gray-600">
Beautiful, intuitive interfaces designed to engage users and drive conversions.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm card-hover">
<div class="w-14 h-14 rounded-lg bg-green-100 text-green-600 flex items-center justify-center mb-6">
<i class="fas fa-chart-line text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Digital Strategy</h3>
<p class="text-gray-600">
Data-driven approaches to help your business thrive in the digital landscape.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm card-hover">
<div class="w-14 h-14 rounded-lg bg-yellow-100 text-yellow-600 flex items-center justify-center mb-6">
<i class="fas fa-search-dollar text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">SEO Optimization</h3>
<p class="text-gray-600">
Improve your search rankings and drive organic traffic to your digital properties.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm card-hover">
<div class="w-14 h-14 rounded-lg bg-red-100 text-red-600 flex items-center justify-center mb-6">
<i class="fas fa-headset text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Support & Maintenance</h3>
<p class="text-gray-600">
Ongoing support to keep your digital products running smoothly and securely.
</p>
</div>
</div>
</div>
</section>
<!-- Work Section -->
<section id="work" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Work</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
A selection of projects we're proud to have delivered
</p>
</div>
<div class="grid md:grid-cols-2 gap-8">
<div class="relative rounded-xl overflow-hidden group">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Project 1" class="w-full h-80 object-cover transition duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
<div class="absolute bottom-0 left-0 p-8 text-white">
<h3 class="text-2xl font-bold mb-2">E-commerce Platform</h3>
<p class="opacity-90">A custom online store with advanced product filtering</p>
</div>
</div>
<div class="relative rounded-xl overflow-hidden group">
<img src="https://images.unsplash.com/photo-1467232004584-a241de8b3885?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80"
alt="Project 2" class="w-full h-80 object-cover transition duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
<div class="absolute bottom-0 left-0 p-8 text-white">
<h3 class="text-2xl font-bold mb-2">Health & Wellness App</h3>
<p class="opacity-90">Mobile application for tracking fitness and nutrition</p>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border border-gray-300 hover:bg-gray-50 px-8 py-3 rounded-lg font-medium transition duration-300">
View All Projects
</button>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Our Story</h2>
<p class="text-gray-600 mb-6">
Founded in 2018, Nexus began as a small team of passionate developers and designers with a shared vision: to create digital products that make a real difference.
</p>
<p class="text-gray-600 mb-6">
Today, we've grown into a full-service digital agency, but we've kept our startup mentality. We're still obsessed with quality, user experience, and delivering exceptional value to our clients.
</p>
<div class="flex space-x-6 mt-8">
<div class="text-center">
<div class="text-3xl font-bold text-indigo-600">50+</div>
<div class="text-gray-600">Clients</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-indigo-600">100+</div>
<div class="text-gray-600">Projects</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-indigo-600">15</div>
<div class="text-gray-600">Team Members</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Our Team" class="w-full rounded-xl shadow-md">
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">What Our Clients Say</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
Don't just take our word for it
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<p class="text-gray-600 mb-6">
"Nexus transformed our online presence completely. Their team delivered beyond our expectations with attention to detail and creative solutions."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold">Sarah Johnson</h4>
<p class="text-gray-500 text-sm">CEO, TechStart</p>
</div>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<p class="text-gray-600 mb-6">
"The mobile app Nexus developed for us has been a game-changer. User engagement has increased by 300% since launch."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold">Michael Chen</h4>
<p class="text-gray-500 text-sm">Founder, FitTrack</p>
</div>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<p class="text-gray-600 mb-6">
"Working with Nexus was a pleasure. They understood our vision and executed flawlessly. Will definitely work with them again."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Emma Rodriguez" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold">Emma Rodriguez</h4>
<p class="text-gray-500 text-sm">Marketing Director, Bloom</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-indigo-600 text-white">
<div class="max-w-7xl mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Ready to Start Your Project?</h2>
<p class="text-xl opacity-90 max-w-2xl mx-auto">
Get in touch and let's create something amazing together
</p>
</div>
<div class="max-w-3xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 bg-indigo-700 p-8 flex flex-col justify-center">
<h3 class="text-2xl font-bold mb-6">Contact Information</h3>
<div class="mb-6 flex items-start">
<div class="mr-4 mt-1 text-indigo-300">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-semibold mb-1">Our Office</h4>
<p class="text-indigo-200">123 Digital Lane, San Francisco, CA 94103</p>
</div>
</div>
<div class="mb-6 flex items-start">
<div class="mr-4 mt-1 text-indigo-300">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-semibold mb-1">Email Us</h4>
<p class="text-indigo-200">[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 mt-1 text-indigo-300">
<i class="fas fa-phone-alt"></i>
</div>
<div>
<h4 class="font-semibold mb-1">Call Us</h4>
<p class="text-indigo-200">+1 (555) 123-4567</p>
</div>
</div>
</div>
<div class="md:w-1/2 p-8">
<form>
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500"></textarea>
</div>
<button type="submit" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-6">
<div class="grid md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-indigo-600 flex items-center justify-center text-white font-bold text-xl">N</div>
<span class="ml-3 text-xl font-semibold">Nexus</span>
</div>
<p class="text-gray-400">
Creating digital experiences that inspire and deliver results.
</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Web Development</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Mobile Apps</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">UI/UX Design</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Digital Strategy</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Our Work</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:text-white hover:bg-indigo-600 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:text-white hover:bg-indigo-600 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:text-white hover:bg-indigo-600 transition">
<i class="fab fa-dribbble"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-400 hover:text-white hover:bg-indigo-600 transition">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">
&copy; 2023 Nexus. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition">Cookies</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="backToTop" class="fixed bottom-8 right-8 w-12 h-12 bg-indigo-600 text-white rounded-full shadow-lg hidden items-center justify-center transition-opacity duration-300">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Back to Top Button
const backToTopButton = document.getElementById('backToTop');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('hidden');
backToTopButton.classList.add('flex');
} else {
backToTopButton.classList.add('hidden');
backToTopButton.classList.remove('flex');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Mobile menu toggle (would be replaced with Next.js state in a real implementation)
const mobileMenuButton = document.querySelector('button.md\\:hidden');
mobileMenuButton.addEventListener('click', () => {
alert("In a Next.js implementation, this would toggle a mobile menu component.");
});
</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=onurozen/deep-site-experiment" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>