Update src/app/page.tsx

This commit is contained in:
2026-03-12 06:04:14 +00:00
parent fb8e149605
commit 0c0de562eb

View File

@@ -10,7 +10,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Sparkles, Leaf, Droplets, Shield, Mail } from "lucide-react";
import { Sparkles, Leaf, Droplets, Shield, Mail, ShoppingCart } from "lucide-react";
export default function LandingPage() {
return (
@@ -92,6 +92,7 @@ export default function LandingPage() {
useInvertedBackground={true}
tagAnimation="slide-up"
buttonAnimation="slide-up"
buttons={[{ text: "View Details", href: "/product-detail" }]}
/>
</div>
@@ -203,7 +204,8 @@ export default function LandingPage() {
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "#faq" },
{ label: "Shipping", href: "#" },
{ label: "Returns", href: "#" }
{ label: "Returns", href: "#" },
{ label: "Track Order", href: "#" }
]
},
{
@@ -220,4 +222,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}