Update src/app/bron/page.tsx

This commit is contained in:
2026-03-08 16:32:28 +00:00
parent 90fc03bcaf
commit 87584f5cdf

View File

@@ -7,7 +7,7 @@ import FooterBase from "@/components/sections/footer/FooterBase";
export default function BronPage() {
const navItems = [
{ name: "Bosh sahifa", id: "home" },
{ name: "Bosh sahifa", id: "/" },
{ name: "Haqida", id: "about" },
{ name: "Menyu", id: "menu" },
{ name: "Galereya", id: "gallery" },
@@ -16,8 +16,7 @@ export default function BronPage() {
const footerColumns = [
{
title: "Restoran",
items: [
title: "Restoran", items: [
{ label: "Menyu", href: "/menyu" },
{ label: "Galereya", href: "/galereya" },
{ label: "Haqida", href: "#about" },
@@ -25,20 +24,16 @@ export default function BronPage() {
],
},
{
title: "Aloqa",
items: [
title: "Aloqa", items: [
{ label: "Telefon: +998 95 833 99 99", href: "tel:+998958339999" },
{
label: "Manzil: Matbuotchilar ko'chasi 17, Tashkent",
href: "https://maps.google.com/?q=Matbuotchilar+17+Tashkent",
},
label: "Manzil: Matbuotchilar ko'chasi 17, Tashkent", href: "https://maps.google.com/?q=Matbuotchilar+17+Tashkent"},
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Telegram", href: "https://telegram.me" },
],
},
{
title: "Qonun",
items: [
title: "Qonun", items: [
{ label: "Maxfiyslik Siyosati", href: "#" },
{ label: "Foydalanish Shartlari", href: "#" },
{ label: "Aloqa", href: "#contact" },
@@ -64,48 +59,34 @@ export default function BronPage() {
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleApple brandName="Colibri" navItems={navItems} />
<NavbarStyleApple brandName="Broadway" navItems={navItems} />
</div>
<div id="booking-form" data-section="booking-form">
<ContactSplitForm
title="Stol Bronini"
description="Quyida formani to'ldirib, Colibri restoranida stol bronini. Biz sizga qo'ng'iroq qilishimiz orqali tasdiqlash uchun kutamiz."
description="Quyida formani to'ldirib, Broadway restoranida stol bronini. Biz sizga qo'ng'iroq qilishimiz orqali tasdiqlash uchun kutamiz."
inputs={[
{
name: "name",
type: "text",
placeholder: "Ismingiz",
required: true,
name: "name", type: "text", placeholder: "Ismingiz", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "+998 XX XXX XX XX",
required: true,
name: "phone", type: "tel", placeholder: "+998 XX XXX XX XX", required: true,
},
{
name: "guests",
type: "number",
placeholder: "Mehmon soni",
required: true,
name: "guests", type: "number", placeholder: "Mehmon soni", required: true,
},
{
name: "date",
type: "date",
placeholder: "Sana",
required: true,
name: "date", type: "date", placeholder: "Sana", required: true,
},
]}
textarea={{
name: "message",
placeholder: "Sharhlar (masalan, tug'ilgan kun, ko'rsatma)",
rows: 3,
name: "message", placeholder: "Sharhlar (masalan, tug'ilgan kun, ko'rsatma)", rows: 3,
required: false,
}}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/hanging-glass-lamp-light-vintage_1203-5789.jpg?_wi=6"
imageAlt="Colibri restoran"
imageAlt="Broadway restoran"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Stol Bronini"
@@ -115,8 +96,8 @@ export default function BronPage() {
<div id="footer" data-section="footer">
<FooterBase
logoText="Colibri"
copyrightText="© 2025 Colibri Restorani. Barcha huquqlar himoyalangan."
logoText="Broadway"
copyrightText="© 2025 Broadway Restorani. Barcha huquqlar himoyalangan."
columns={footerColumns}
/>
</div>