diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
index dca2e59..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 (
@@ -28,13 +29,19 @@ export default function ProductsPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
- { name: "Pricing", id: "/pricing" },
+ { name: "About", id: "/about" },
{ name: "FAQ", id: "/faq" }
]}
button={{
text: "Shop Now", href: "/products"
}}
/>
+
@@ -80,23 +87,24 @@ export default function ProductsPage() {
useInvertedBackground="invertDefault"
features={[
{
- id: 1,
- title: "Deep Hydration", description: "Our proprietary blend of hyaluronic acid and botanical extracts penetrates multiple skin layers to deliver intense, long-lasting moisture", imageSrc: "https://img.b2bpic.net/free-photo/beautiful-girl-standing-with-cream_1157-29503.jpg", imageAlt: "Hydration benefits visualization"
+ 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", description: "Advanced antioxidant complex protects against environmental stressors while strengthening your skin barrier", imageSrc: "https://img.b2bpic.net/free-photo/beautiful-woman-applying-moisturizer-her-face-bathroom_637285-3386.jpg", imageAlt: "Skin protection technology demonstration"
+ 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", description: "Plant-based vitamins and peptides work synergistically to improve texture, elasticity, and radiance", imageSrc: "https://img.b2bpic.net/free-photo/woman-applying-cream-face-while-looking-mirror_23-2148875051.jpg", imageAlt: "Natural ingredients and their benefits"
+ 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"
}
]}
+ animationType="slide-up"
/>
-
);
-}
+}
\ No newline at end of file