diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
index 85d54f4..82234e9 100644
--- a/src/app/products/page.tsx
+++ b/src/app/products/page.tsx
@@ -4,7 +4,7 @@ import Link from "next/link";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
-import { ThemeProvider } from '@/components/ui/ThemeProvider';
+import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
export default function ProductsPage() {
return (
@@ -12,22 +12,27 @@ export default function ProductsPage() {
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
- contentWidth="compact"
- sizing="largeSizeMediumTitles"
+ contentWidth="medium"
+ sizing="medium"
background="aurora"
- cardStyle="gradient-mesh"
- primaryButtonStyle="double-inset"
- secondaryButtonStyle="layered"
+ cardStyle="glass-elevated"
+ primaryButtonStyle="gradient"
+ secondaryButtonStyle="glass"
showBlurBottom={false}
>
+
+ Home
+ About
+ Products
+ Contact
+
@@ -41,32 +46,16 @@ export default function ProductsPage() {
useInvertedBackground="noInvert"
products={[
{
- id: "1",
- name: "Red Rose Romance",
- price: "$79.99",
- imageSrc: "https://img.b2bpic.net/free-photo/elevated-view-red-rose-flower-vase_23-2148181221.jpg",
- imageAlt: "Red roses bouquet"
+ id: "1", name: "Red Rose Romance", price: "$79.99", imageSrc: "https://img.b2bpic.net/free-photo/elevated-view-red-rose-flower-vase_23-2148181221.jpg", imageAlt: "Red roses bouquet"
},
{
- id: "2",
- name: "Spring Tulip Mix",
- price: "$69.99",
- imageSrc: "https://img.b2bpic.net/free-photo/red-roses-inside-transparent-glass-vase-room_114579-2701.jpg",
- imageAlt: "Colorful tulips arrangement"
+ id: "2", name: "Spring Tulip Mix", price: "$69.99", imageSrc: "https://img.b2bpic.net/free-photo/red-roses-inside-transparent-glass-vase-room_114579-2701.jpg", imageAlt: "Colorful tulips arrangement"
},
{
- id: "3",
- name: "Sunflower Sunshine",
- price: "$74.99",
- imageSrc: "https://img.b2bpic.net/free-photo/close-up-man-holding-elegant-flowers_23-2148488537.jpg",
- imageAlt: "Bright sunflowers"
+ id: "3", name: "Sunflower Sunshine", price: "$74.99", imageSrc: "https://img.b2bpic.net/free-photo/close-up-man-holding-elegant-flowers_23-2148488537.jpg", imageAlt: "Bright sunflowers"
},
{
- id: "4",
- name: "Orchid Elegance",
- price: "$89.99",
- imageSrc: "https://img.b2bpic.net/free-photo/beautiful-wedding-bouquet-roses_24837-420.jpg",
- imageAlt: "Premium orchid arrangement"
+ id: "4", name: "Orchid Elegance", price: "$89.99", imageSrc: "https://img.b2bpic.net/free-photo/beautiful-wedding-bouquet-roses_24837-420.jpg", imageAlt: "Premium orchid arrangement"
}
]}
/>