pawsmart / index.html
Abel222's picture
Here’s a solid website idea for dog training that you can use to start your business or project:
ac292d4 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PawSmart Training | Train Smarter, Love Deeper</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
.hero-gradient {
background: linear-gradient(135deg, #3b82f6 0%, #f59e0b 100%);
}
.feature-card: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);
}
.testimonial-card {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i data-feather="heart" class="text-blue-500 h-8 w-8"></i>
<span class="ml-2 text-xl font-bold text-gray-900">PawSmart</span>
</div>
<div class="hidden sm:ml-6 sm:flex sm:space-x-8">
<a href="#" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a>
<a href="programs.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Programs</a>
<a href="ai-trainer.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">AI Trainer</a>
<a href="community.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Community</a>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">Sign In</button>
<button class="ml-4 bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">Get Started</button>
</div>
<div class="-mr-2 flex items-center sm:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500" aria-controls="mobile-menu" aria-expanded="false">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="sm:hidden hidden" id="mobile-menu">
<div class="pt-2 pb-3 space-y-1">
<a href="#" class="bg-blue-50 border-blue-500 text-blue-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a>
<a href="programs.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Programs</a>
<a href="ai-trainer.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">AI Trainer</a>
<a href="community.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Community</a>
<div class="mt-4 pt-4 border-t border-gray-200">
<button class="w-full bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-md text-base font-medium transition duration-300">Sign In</button>
<button class="w-full mt-2 bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md text-base font-medium transition duration-300">Get Started</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div id="hero" class="hero-gradient text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
<div class="md:flex md:items-center md:justify-between">
<div class="md:w-1/2" data-aos="fade-right">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-4">Train Smarter, Love Deeper</h1>
<p class="text-xl mb-8">Transform your dog's behavior with science-based training methods you can do at home.</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium text-lg shadow-md transition duration-300">Start Free Training</button>
<button class="bg-transparent border-2 border-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-lg font-medium text-lg shadow-md transition duration-300">Meet Our Trainers</button>
</div>
</div>
<div class="hidden md:block md:w-1/2" data-aos="fade-left">
<img src="http://static.photos/pets/1200x630/1" alt="Happy dog with owner" class="rounded-lg shadow-2xl">
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">Your Complete Training Solution</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">Everything you need to build a stronger bond with your dog</p>
</div>
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300" data-aos="fade-up" data-aos-delay="100">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i data-feather="cpu" class="h-6 w-6"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">AI-Powered Trainer</h3>
<p class="text-gray-500">Get personalized training plans based on your dog's unique needs and your schedule.</p>
</div>
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300" data-aos="fade-up" data-aos-delay="200">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-orange-100 text-orange-600 mb-4">
<i data-feather="users" class="h-6 w-6"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Supportive Community</h3>
<p class="text-gray-500">Connect with other dog owners and certified trainers for advice and encouragement.</p>
</div>
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300" data-aos="fade-up" data-aos-delay="300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-100 text-green-600 mb-4">
<i data-feather="video" class="h-6 w-6"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Live Sessions</h3>
<p class="text-gray-500">Book one-on-one video calls with professional trainers for personalized guidance.</p>
</div>
</div>
</div>
</div>
<!-- Testimonials Section -->
<div class="py-16 bg-gray-100">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">Success Stories</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">See how PawSmart has transformed relationships</p>
</div>
<div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
<div class="testimonial-card p-6 rounded-lg shadow-md" data-aos="fade-up" data-aos-delay="100">
<div class="flex items-center mb-4">
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/1" alt="Sarah J.">
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Sarah J.</h4>
<div class="flex mt-1">
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
</div>
</div>
</div>
<p class="text-gray-600">"My rescue dog Max was terrified of walks. After just 2 weeks with PawSmart's behavior correction program, he's now excited for our daily adventures!"</p>
</div>
<div class="testimonial-card p-6 rounded-lg shadow-md" data-aos="fade-up" data-aos-delay="200">
<div class="flex items-center mb-4">
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/2" alt="Michael T.">
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Michael T.</h4>
<div class="flex mt-1">
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
</div>
</div>
</div>
<p class="text-gray-600">"As a first-time dog owner, I was overwhelmed. The puppy basics course gave me the confidence and tools I needed to raise a well-behaved companion."</p>
</div>
<div class="testimonial-card p-6 rounded-lg shadow-md" data-aos="fade-up" data-aos-delay="300">
<div class="flex items-center mb-4">
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/3" alt="Lisa & David K.">
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Lisa & David K.</h4>
<div class="flex mt-1">
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
<i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
</div>
</div>
</div>
<p class="text-gray-600">"Our German Shepherd went from uncontrollable to obedient thanks to the live sessions. The trainer's personalized approach made all the difference."</p>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="bg-blue-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="md:flex md:items-center md:justify-between">
<div class="md:w-2/3 mb-6 md:mb-0" data-aos="fade-right">
<h2 class="text-2xl font-bold mb-2">Ready to transform your dog's behavior?</h2>
<p class="text-blue-100">Join thousands of happy owners and their well-trained dogs today.</p>
</div>
<div class="md:w-1/3" data-aos="fade-left">
<button class="w-full bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium shadow-md transition duration-300">Start Your Free Trial</button>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-900 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div class="md:col-span-1">
<div class="flex items-center">
<i data-feather="heart" class="text-blue-400 h-8 w-8"></i>
<span class="ml-2 text-xl font-bold">PawSmart</span>
</div>
<p class="mt-4 text-gray-400">Science-based dog training for modern owners.</p>
<div class="flex mt-6 space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="facebook" class="h-5 w-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="instagram" class="h-5 w-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter" class="h-5 w-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="youtube" class="h-5 w-5"></i>
</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase mb-4">Training</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">Puppy Basics</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Obedience</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Behavior Correction</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Advanced Tricks</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase mb-4">Company</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Our Trainers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase mb-4">Stay Updated</h3>
<p class="text-gray-400 mb-4">Subscribe to our newsletter for training tips and special offers.</p>
<div class="flex">
<input type="email" placeholder="Your email" class="bg-gray-800 text-white px-4 py-2 rounded-l-lg focus:outline-none focus:ring-2 focus:ring-blue-500 w-full">
<button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-r-lg transition duration-300">
<i data-feather="send" class="h-4 w-4"></i>
</button>
</div>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800">
<p class="text-gray-400 text-sm text-center">&copy; 2023 PawSmart Training. All rights reserved.</p>
</div>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
feather.replace();
// Mobile menu toggle
const mobileMenuButton = document.querySelector('button[aria-controls="mobile-menu"]');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', function() {
const expanded = this.getAttribute('aria-expanded') === 'true';
this.setAttribute('aria-expanded', !expanded);
mobileMenu.classList.toggle('hidden');
// Change icon
const icon = this.querySelector('i');
if (expanded) {
icon.setAttribute('data-feather', 'menu');
} else {
icon.setAttribute('data-feather', 'x');
}
feather.replace();
});
// Vanta.js background for hero section if needed
// VANTA.GLOBE({
// el: "#hero",
// mouseControls: true,
// touchControls: true,
// gyroControls: false,
// minHeight: 200.00,
// minWidth: 200.00,
// scale: 1.00,
// scaleMobile: 1.00,
// color: 0x3b82f6,
// backgroundColor: 0x0
// });
</script>
</body>
</html>