diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 702dbab..6762cc5 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,6 +7,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Heart, Leaf, Shield, Award, CheckCircle, Star, Mail } from "lucide-react"; +import Link from "next/link"; export default function AboutPage() { return ( @@ -29,13 +30,18 @@ export default function AboutPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Pricing", id: "/pricing" }, { name: "FAQ", id: "/faq" } ]} button={{ text: "Shop Now", href: "/products" }} /> +
@@ -108,4 +114,4 @@ export default function AboutPage() { ); -} +} \ No newline at end of file diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 4a28f9e..395a89f 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -133,4 +133,4 @@ export default function BlogPage() { ); -} +} \ No newline at end of file diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx index 86fa785..adb5c09 100644 --- a/src/app/faq/page.tsx +++ b/src/app/faq/page.tsx @@ -7,6 +7,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Star, Mail } from "lucide-react"; +import Link from "next/link"; export default function FaqPage() { return ( @@ -29,13 +30,18 @@ export default function FaqPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Pricing", id: "/pricing" }, { name: "FAQ", id: "/faq" } ]} button={{ text: "Shop Now", href: "/products" }} /> +
@@ -107,4 +113,4 @@ export default function FaqPage() { ); -} +} \ No newline at end of file diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4fe7701..f4da48f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1259,4 +1259,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index d7761f7..68a1e32 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Sparkles, Heart, Leaf, Shield, Award, CheckCircle, Star, Mail } from "lucide-react"; +import Link from "next/link"; export default function HomePage() { return ( @@ -31,13 +32,18 @@ export default function HomePage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Pricing", id: "/pricing" }, { name: "FAQ", id: "/faq" } ]} button={{ text: "Shop Now", href: "/products" }} /> +
@@ -140,4 +146,4 @@ export default function HomePage() { ); -} +} \ No newline at end of file diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 9d06b27..c0e3d0a 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -3,10 +3,11 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Sparkles, Zap, Star, Heart, Crown } from "lucide-react"; +import Link from "next/link"; export default function ProductsPage() { return ( @@ -29,13 +30,18 @@ export default function ProductsPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Pricing", id: "/pricing" }, { name: "FAQ", id: "/faq" } ]} button={{ text: "Shop Now", href: "/products" }} /> +
@@ -81,15 +87,15 @@ export default function ProductsPage() { useInvertedBackground="invertDefault" features={[ { - id: "1", title: "Deep Hydration", tags: ["Hydration", "Science"], + id: "1", title: "Deep Hydration", tags: ["Hydration", "Moisture"], imageSrc: "https://img.b2bpic.net/free-photo/beautiful-girl-standing-with-cream_1157-29503.jpg", imageAlt: "Hydration benefits visualization" }, { - id: "2", title: "Protective Shield", tags: ["Protection", "Advanced"], + id: "2", title: "Protective Shield", tags: ["Protection", "Barrier"], imageSrc: "https://img.b2bpic.net/free-photo/beautiful-woman-applying-moisturizer-her-face-bathroom_637285-3386.jpg", imageAlt: "Skin protection technology demonstration" }, { - id: "3", title: "Natural Nourishment", tags: ["Natural", "Nourish"], + id: "3", title: "Natural Nourishment", tags: ["Natural", "Nourishment"], imageSrc: "https://img.b2bpic.net/free-photo/woman-applying-cream-face-while-looking-mirror_23-2148875051.jpg", imageAlt: "Natural ingredients and their benefits" } ]} @@ -98,7 +104,7 @@ export default function ProductsPage() {
- ); -} +} \ No newline at end of file