Add src/app/products/page.tsx
This commit is contained in:
62
src/app/products/page.tsx
Normal file
62
src/app/products/page.tsx
Normal file
@@ -0,0 +1,62 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
|
||||
export default function ProductsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="medium"
|
||||
background="fluid"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/#hero" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Services", id: "/#features" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
brandName="Cabro City"
|
||||
/>
|
||||
|
||||
<div className="pt-32 pb-16">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Standard Block", price: "$12.00", variant: "Durable", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779202279236-n9y3ic3n.jpg" },
|
||||
{ id: "p2", name: "Industrial Paver", price: "$15.00", variant: "Heavy-duty", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779202522535-7x14u3zd.jpg" },
|
||||
{ id: "p3", name: "Garden Block", price: "$10.00", variant: "Aesthetic", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779202245175-vsbjy6it.jpg" },
|
||||
{ id: "p4", name: "Drainage Paver", price: "$18.00", variant: "Permeable", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779202474424-30177oda.jpg" },
|
||||
{ id: "p5", name: "Culverts", price: "$22.00", variant: "Classic", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779204755631-v35tjswt.jpg" },
|
||||
{ id: "p6", name: "Large Tile", price: "$25.00", variant: "Commercial", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779204790107-oaybuzsu.jpg" },
|
||||
]}
|
||||
title="Our Paving Solutions"
|
||||
description="Browse our catalog of premium cabro bricks and paving solutions."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterLogoReveal
|
||||
logoText="Cabro City"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user