Update src/components/Layout.tsx

This commit is contained in:
2026-06-24 22:35:37 +00:00
parent e5b03e2e5f
commit b2fa7de6d6

View File

@@ -8,32 +8,13 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Events",
"href": "#events"
"name": "Events", "href": "#events"
},
{
"name": "Menu",
"href": "#menu"
"name": "Menu", "href": "#menu"
},
{
"name": "Reservations",
"href": "#contact"
},
{
"name": "Translate",
"href": "#lang"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Match",
"href": "#match"
"name": "Reservations", "href": "#contact"
}
];
@@ -43,11 +24,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Irish Pub By Hollywood"
logoImageSrc="https://images.unsplash.com/photo-1599566150163-29194dcaad36?q=80&w=100&auto=format&fit=crop"
logoImageSrc="http://img.b2bpic.net/free-vector/pack-four-st-patrick-stickers-flat-design_23-2147596523.jpg"
ctaButton={{
text: "WhatsApp Book",
href: "https://wa.me/994504040407",
}}
text: "WhatsApp Book", href: "https://wa.me/994504040407"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -58,53 +37,36 @@ export default function Layout() {
brand="Irish Pub By Hollywood"
columns={[
{
title: "Location",
items: [
title: "Location", items: [
{
label: "62 Nizami St, Baku",
href: "#",
},
label: "62 Nizami St, Baku", href: "#"},
{
label: "Open Daily 13:00 - 03:00",
href: "#",
},
label: "Open Daily 13:00 - 03:00", href: "#"},
],
},
{
title: "Socials",
items: [
title: "Socials", items: [
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "WhatsApp",
href: "https://wa.me/994504040407",
},
label: "WhatsApp", href: "https://wa.me/994504040407"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "050 404 04 07",
href: "tel:+994504040407",
},
label: "050 404 04 07", href: "tel:+994504040407"},
{
label: "Email Us",
href: "mailto:info@irishpub.az",
},
label: "Email Us", href: "mailto:info@irishpub.az"},
],
},
]}
copyright="© 2024 Irish Pub By Hollywood. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
]}
imageSrc="http://img.b2bpic.net/free-vector/pack-four-st-patrick-stickers-flat-design_23-2147596523.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-vector/pack-four-st-patrick-stickers-flat-design_23-2147596523.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>