Add src/app/categories/page.tsx
This commit is contained in:
79
src/app/categories/page.tsx
Normal file
79
src/app/categories/page.tsx
Normal file
@@ -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 (
|
||||
<ThemeProvider {...themeProviderProps}>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen {...navbarProps} />
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{ variant: "plain" }}
|
||||
title="Kategoriyalar"
|
||||
description="Mahsulotlarimizning barcha kategoriyalarini bu yerdan toping. Biz har bir ehtiyoj uchun keng tanlovni taklif etamiz."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EPDqOTa7cUDnsssjhuE5lOe8kS/uploaded-1780497630876-tn0tvi1c.png"
|
||||
imageAlt="Kategoriyalar sahifasi"
|
||||
mediaAnimation="opacity"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="container mx-auto px-4 py-16 text-center" id="categories-content" data-section="categories-content">
|
||||
<h2 className="text-3xl font-bold mb-4">Kategoriyalar tez orada to'ldiriladi!</h2>
|
||||
<p className="text-lg text-gray-600">Yangi va qiziqarli kategoriyalar ustida ishlamoqdamiz.</p>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase {...footerProps} />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user