diff --git a/src/app/page.tsx b/src/app/page.tsx index 7c83627..c393671 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,8 +8,9 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { Package } from 'lucide-react'; +import { Package, Sparkles } from 'lucide-react'; export default function SitePage() { return ( @@ -32,7 +33,8 @@ export default function SitePage() { { name: "Products", id: "products" }, { name: "About", id: "about" }, { name: "Stories", id: "testimonials" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Pricing", id: "pricing" } ]} brandName="In My Life" button={{ text: "View Gallery", href: "#gallery" }} @@ -162,6 +164,22 @@ export default function SitePage() { /> +