Add src/app/gallery/page.tsx

This commit is contained in:
2026-04-09 09:44:22 +00:00
parent 83ccc9fc01
commit 8b8795beef

22
src/app/gallery/page.tsx Normal file
View File

@@ -0,0 +1,22 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function GalleryPage() {
return (
<ThemeProvider>
<NavbarStyleApple navItems={[{ name: "Bosh Sahifa", id: "/" }, { name: "Galereya", id: "/gallery" }, { name: "Blog", id: "/blog" }, { name: "Aloqa", id: "/contact" }]} brandName="OSHTONCHA" />
<main className="container mx-auto py-20">
<h1 className="text-4xl font-bold mb-10 text-center">Restoran Galereyasi</h1>
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
<div className="aspect-square bg-gray-200 rounded-lg"></div>
<div className="aspect-square bg-gray-200 rounded-lg"></div>
<div className="aspect-square bg-gray-200 rounded-lg"></div>
</div>
</main>
<FooterBase columns={[{ title: "Sahifalar", items: [{ label: "Galereya", href: "/gallery" }, { label: "Blog", href: "/blog" }] }, { title: "Biz haqimizda", items: [{ label: "Haqimizda", href: "/about" }, { label: "Aloqa", href: "/contact" }] }]} logoText="OSHTONCHA" />
</ThemeProvider>
);
}