diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 6b6913d..9965994 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -35,9 +35,11 @@ export default function BlogPage() { navItems={[ { name: "Home", id: "/" }, { name: "About", id: "/#about" }, + { name: "Pricing", id: "/#pricing" }, { name: "Shop", id: "/shop" }, + { name: "Team", id: "/#team" }, { name: "Testimonials", id: "/#testimonials" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/#contact" } ]} brandName="Angola" bottomLeftText="Experience the Beauty" diff --git a/src/app/page.tsx b/src/app/page.tsx index 2043c58..3745955 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,10 +4,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import TeamCardOne from '@/components/sections/team/TeamCardOne'; import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Shield, Users } from 'lucide-react'; export default function LandingPage() { return ( @@ -28,9 +31,11 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "/" }, { name: "About", id: "/#about" }, + { name: "Pricing", id: "/#pricing" }, { name: "Shop", id: "/shop" }, + { name: "Team", id: "/#team" }, { name: "Testimonials", id: "/#testimonials" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/#contact" } ]} brandName="Angola" bottomLeftText="Experience the Beauty" @@ -73,6 +78,30 @@ export default function LandingPage() { /> +