Add src/app/products/page.tsx

This commit is contained in:
2026-04-07 18:40:48 +00:00
parent 1b66736713
commit c0f9acf5ac

65
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,65 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="floatingGradient"
cardStyle="layered-gradient"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="SwiftShop UAE"
/>
</div>
<div id="products" data-section="products" style={{ paddingTop: "100px" }}>
<ProductCardFour
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{ id: "p1", name: "Wireless Headphones", price: "AED 299", variant: "Black", imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-woman-listening-music-wireless-headphones-wearing-pink-sweater-smiling-happy-positive-mood-posing-pink-background_285396-9593.jpg?_wi=1", imageAlt: "Headphones" },
{ id: "p2", name: "Smart Watch Ultra", price: "AED 499", variant: "Metal", imageSrc: "http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722612.jpg?_wi=1", imageAlt: "Watch" },
{ id: "p3", name: "Bluetooth Speaker", price: "AED 150", variant: "Matte", imageSrc: "http://img.b2bpic.net/free-photo/modern-round-wireless-speaker-with-slick-design-shadow_23-2150808053.jpg?_wi=1", imageAlt: "Speaker" },
{ id: "p4", name: "Pro Smartphone", price: "AED 2499", variant: "Silver", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-tech-setup-with-tablet-stylus-earbuds_58702-17251.jpg?_wi=1", imageAlt: "Phone" },
]}
title="All Products"
description="Browse our complete collection of premium tech gadgets available in the UAE."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Products", href: "/products" }] },
{ items: [{ label: "Privacy Policy", href: "#" }] },
]}
logoText="SwiftShop UAE"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}