Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d34e8c7fb | |||
| 81e1564f95 | |||
| 9e06da0551 | |||
| 6f8b4b1eb9 | |||
| aa9d223b3b | |||
| 3e41f93535 | |||
| 3ff8e956ee | |||
| b754eb5908 | |||
| caece2d412 | |||
| 1a8fe04713 | |||
| 0e98af7127 |
@@ -11,9 +11,9 @@ import { CheckCircle } from "lucide-react";
|
|||||||
|
|
||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Animals", id: "animals" },
|
{ name: "Animals", id: "/animals" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
];
|
];
|
||||||
@@ -21,34 +21,34 @@ export default function AboutPage() {
|
|||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Products", items: [
|
title: "Products", items: [
|
||||||
{ label: "Snakes", href: "#animals" },
|
{ label: "Snakes", href: "/animals" },
|
||||||
{ label: "Turtles", href: "#animals" },
|
{ label: "Turtles", href: "/animals" },
|
||||||
{ label: "Macaws", href: "#animals" },
|
{ label: "Macaws", href: "/animals" },
|
||||||
{ label: "Care Guides", href: "#" },
|
{ label: "Care Guides", href: "/" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Our Story", href: "/about" },
|
{ label: "Our Story", href: "/about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Blog", href: "/" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "/" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact", href: "/contact" },
|
{ label: "Contact", href: "/contact" },
|
||||||
{ label: "FAQ", href: "#" },
|
{ label: "FAQ", href: "/" },
|
||||||
{ label: "Health Guarantee", href: "#" },
|
{ label: "Health Guarantee", href: "/" },
|
||||||
{ label: "Shipping Info", href: "#" },
|
{ label: "Shipping Info", href: "/" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal", items: [
|
title: "Legal", items: [
|
||||||
{ label: "Privacy Policy", href: "#" },
|
{ label: "Privacy Policy", href: "/" },
|
||||||
{ label: "Terms of Service", href: "#" },
|
{ label: "Terms of Service", href: "/" },
|
||||||
{ label: "Refund Policy", href: "#" },
|
{ label: "Refund Policy", href: "/" },
|
||||||
{ label: "Cookie Policy", href: "#" },
|
{ label: "Cookie Policy", href: "/" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
@@ -80,7 +80,7 @@ export default function AboutPage() {
|
|||||||
description={[
|
description={[
|
||||||
"Founded in 2010, Exotic Pets began with a simple mission: to provide ethically sourced, health-certified exotic animals to dedicated collectors and families worldwide. What started as a small specialty operation has grown into the premier destination for premium exotic pets.", "We believe that responsible exotic pet ownership begins with transparency, expert care, and unwavering commitment to animal welfare. Every decision we make—from breeder partnerships to veterinary protocols—is guided by this principle.", "Today, we're proud to serve thousands of satisfied customers across the globe, each with their own unique story of connection with their exotic animal companions. Our success is measured not just in sales, but in the lifelong wellbeing of every animal that leaves our care."
|
"Founded in 2010, Exotic Pets began with a simple mission: to provide ethically sourced, health-certified exotic animals to dedicated collectors and families worldwide. What started as a small specialty operation has grown into the premier destination for premium exotic pets.", "We believe that responsible exotic pet ownership begins with transparency, expert care, and unwavering commitment to animal welfare. Every decision we make—from breeder partnerships to veterinary protocols—is guided by this principle.", "Today, we're proud to serve thousands of satisfied customers across the globe, each with their own unique story of connection with their exotic animal companions. Our success is measured not just in sales, but in the lifelong wellbeing of every animal that leaves our care."
|
||||||
]}
|
]}
|
||||||
buttons={[{ text: "Browse Animals", href: "/" }]}
|
buttons={[{ text: "Browse Animals", href: "/animals" }]}
|
||||||
showBorder={true}
|
showBorder={true}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
ariaLabel="About page - our journey"
|
ariaLabel="About page - our journey"
|
||||||
@@ -139,4 +139,4 @@ export default function AboutPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,9 +10,9 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
|||||||
import { Heart, CheckCircle } from "lucide-react";
|
import { Heart, CheckCircle } from "lucide-react";
|
||||||
|
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Animals", id: "animals" },
|
{ name: "Animals", id: "/animals" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
];
|
];
|
||||||
@@ -169,10 +169,10 @@ export default function AnimalsPage() {
|
|||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{
|
{
|
||||||
label: "About Us", href: "/"
|
label: "About Us", href: "/about"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Our Story", href: "/"
|
label: "Our Story", href: "/about"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Blog", href: "/"
|
label: "Blog", href: "/"
|
||||||
@@ -221,4 +221,4 @@ export default function AnimalsPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
1445
src/app/layout.tsx
1445
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -14,9 +14,9 @@ import { Sparkles, Heart, CheckCircle, Star } from "lucide-react";
|
|||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Animals", id: "animals" },
|
{ name: "Animals", id: "/animals" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
];
|
];
|
||||||
@@ -51,8 +51,8 @@ export default function HomePage() {
|
|||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Browse Animals", href: "animals" },
|
{ text: "Browse Animals", href: "/animals" },
|
||||||
{ text: "Learn More", href: "about" }
|
{ text: "Learn More", href: "/about" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
carouselItems={[
|
carouselItems={[
|
||||||
@@ -75,7 +75,7 @@ export default function HomePage() {
|
|||||||
description={[
|
description={[
|
||||||
"Exotic Pets has been the premier destination for exotic animals since 2010. We specialize in providing healthy, responsibly sourced snakes, turtles, and macaws to dedicated collectors and families worldwide.", "Our mission is to promote ethical exotic pet ownership through education, expert care, and transparent business practices. Every animal in our collection receives specialized veterinary attention and optimal living conditions.", "We work with experienced breeders and wildlife specialists to ensure genetic diversity and long-term health of all our animals. Your satisfaction and the animal's wellbeing are our top priorities."
|
"Exotic Pets has been the premier destination for exotic animals since 2010. We specialize in providing healthy, responsibly sourced snakes, turtles, and macaws to dedicated collectors and families worldwide.", "Our mission is to promote ethical exotic pet ownership through education, expert care, and transparent business practices. Every animal in our collection receives specialized veterinary attention and optimal living conditions.", "We work with experienced breeders and wildlife specialists to ensure genetic diversity and long-term health of all our animals. Your satisfaction and the animal's wellbeing are our top priorities."
|
||||||
]}
|
]}
|
||||||
buttons={[{ text: "View Our Story", href: "#" }]}
|
buttons={[{ text: "View Our Story", href: "/about" }]}
|
||||||
showBorder={true}
|
showBorder={true}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
ariaLabel="About section"
|
ariaLabel="About section"
|
||||||
@@ -89,7 +89,7 @@ export default function HomePage() {
|
|||||||
tag="Available Now"
|
tag="Available Now"
|
||||||
tagIcon={Heart}
|
tagIcon={Heart}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[{ text: "Browse Full Catalog", href: "animals" }]}
|
buttons={[{ text: "Browse Full Catalog", href: "/animals" }]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
products={[
|
products={[
|
||||||
{ id: "snake-1", brand: "Exotic Pets", name: "Green Tree Python", price: "$450.00", rating: 5, reviewCount: "24", imageSrc: "http://img.b2bpic.net/free-photo/blue-viper-snake-branch-viper-snake-ready-attack-blue-insularis-animal-closeup_488145-2760.jpg?_wi=1", imageAlt: "Green Tree Python" },
|
{ id: "snake-1", brand: "Exotic Pets", name: "Green Tree Python", price: "$450.00", rating: 5, reviewCount: "24", imageSrc: "http://img.b2bpic.net/free-photo/blue-viper-snake-branch-viper-snake-ready-attack-blue-insularis-animal-closeup_488145-2760.jpg?_wi=1", imageAlt: "Green Tree Python" },
|
||||||
@@ -185,7 +185,7 @@ export default function HomePage() {
|
|||||||
animationType="entrance-slide"
|
animationType="entrance-slide"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get in Touch", href: "contact" },
|
{ text: "Get in Touch", href: "contact" },
|
||||||
{ text: "Browse Catalog", href: "animals" }
|
{ text: "Browse Catalog", href: "/animals" }
|
||||||
]}
|
]}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -199,34 +199,34 @@ export default function HomePage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Products", items: [
|
title: "Products", items: [
|
||||||
{ label: "Snakes", href: "#animals" },
|
{ label: "Snakes", href: "/animals" },
|
||||||
{ label: "Turtles", href: "#animals" },
|
{ label: "Turtles", href: "/animals" },
|
||||||
{ label: "Macaws", href: "#animals" },
|
{ label: "Macaws", href: "/animals" },
|
||||||
{ label: "Care Guides", href: "#" }
|
{ label: "Care Guides", href: "/" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Our Story", href: "/about" },
|
{ label: "Our Story", href: "/about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Blog", href: "/" },
|
||||||
{ label: "Careers", href: "#" }
|
{ label: "Careers", href: "/" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact", href: "/contact" },
|
{ label: "Contact", href: "/contact" },
|
||||||
{ label: "FAQ", href: "#" },
|
{ label: "FAQ", href: "/" },
|
||||||
{ label: "Health Guarantee", href: "#" },
|
{ label: "Health Guarantee", href: "/" },
|
||||||
{ label: "Shipping Info", href: "#" }
|
{ label: "Shipping Info", href: "/" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal", items: [
|
title: "Legal", items: [
|
||||||
{ label: "Privacy Policy", href: "#" },
|
{ label: "Privacy Policy", href: "/" },
|
||||||
{ label: "Terms of Service", href: "#" },
|
{ label: "Terms of Service", href: "/" },
|
||||||
{ label: "Refund Policy", href: "#" },
|
{ label: "Refund Policy", href: "/" },
|
||||||
{ label: "Cookie Policy", href: "#" }
|
{ label: "Cookie Policy", href: "/" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
@@ -236,4 +236,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user