Add src/app/products/page.tsx

This commit is contained in:
2026-04-04 14:29:57 +00:00
parent acf17e2209
commit 4e77587f2a

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

@@ -0,0 +1,59 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="medium"
sizing="mediumLarge"
background="blurBottom"
cardStyle="gradient-bordered"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "Products", id: "/products" },
{ name: "Team", id: "/#team" },
{ name: "FAQ", id: "/#faq" },
]}
brandName="Jomotech"
button={{ text: "Get Support", href: "/#contact" }}
/>
</div>
<div id="catalog" data-section="catalog">
<ProductCatalog
layout="page"
title="Our Products"
description="High-quality hardware components and peripherals."
products={[]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "/#services" }, { label: "Careers", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
logoText="Jomotech"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}