diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 79607f4..2a75553 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -3,7 +3,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Sparkles, Zap, Star, Heart, Crown } from "lucide-react"; @@ -81,15 +81,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 +98,7 @@ export default function ProductsPage() {