From a891e11c1b6144307dcd4db990cec01ee443bfb0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 15:38:36 +0000 Subject: [PATCH] Add src/app/categories/page.tsx --- src/app/categories/page.tsx | 79 +++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 src/app/categories/page.tsx diff --git a/src/app/categories/page.tsx b/src/app/categories/page.tsx new file mode 100644 index 0000000..2fa9a92 --- /dev/null +++ b/src/app/categories/page.tsx @@ -0,0 +1,79 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; + +const themeProviderProps = { + defaultButtonVariant: "shift-hover", defaultTextAnimation: "reveal-blur", borderRadius: "soft", contentWidth: "small", sizing: "mediumLargeSizeMediumTitles", background: "grid", cardStyle: "inset", primaryButtonStyle: "radial-glow", secondaryButtonStyle: "glass", headingFontWeight: "bold"}; + +const navbarProps = { + navItems: [ + { name: "Bosh sahifa", id: "/" }, + { name: "Biz haqimizda", id: "/about" }, + { name: "Kategoriyalar", id: "/categories" }, + { name: "Mahsulotlar", id: "/products" }, + { name: "Bog'lanish", id: "/contact" }, + ], + logoSrc: "http://img.b2bpic.net/free-photo/cyber-monday-celebration_23-2151835475.jpg", logoAlt: "Opto Go logo", brandName: "Opto Go"}; + +const footerProps = { + columns: [ + { + title: "Kompaniya", items: [ + { label: "Biz haqimizda", href: "/about" }, + { label: "Bog'lanish", href: "/contact" }, + { label: "Kategoriyalar", href: "/categories" }, + { label: "Mahsulotlar", href: "/products" }, + ], + }, + { + title: "Yordam", items: [ + { label: "FAQ", href: "/faq" }, + { label: "Yetkazib berish", href: "#" }, + { label: "To'lov usullari", href: "#" }, + ], + }, + { + title: "Qonuniy", items: [ + { label: "Maxfiylik siyosati", href: "#" }, + { label: "Xizmat ko'rsatish shartlari", href: "#" }, + ], + }, + ], + logoSrc: "http://img.b2bpic.net/free-photo/cyber-monday-celebration_23-2151835475.jpg", logoAlt: "Opto Go logo", logoText: "Opto Go", copyrightText: "© 2024 Opto Go. Barcha huquqlar himoyalangan."}; + + +export default function CategoriesPage() { + return ( + + + + +
+ +
+ +
+

Kategoriyalar tez orada to'ldiriladi!

+

Yangi va qiziqarli kategoriyalar ustida ishlamoqdamiz.

+
+ + +
+
+ ); +}