Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-26 13:57:54 +00:00

View File

@@ -7,7 +7,7 @@ import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwe
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -25,42 +25,24 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Boqshah Cafe"
button={{ text: "Home", href: "/" }}
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Contact Us"
title="Get in Touch"
description="Need to reach out? Send us a message or visit us in Abu Dhabi."
buttons={[
{
text: "Call Now",
href: "tel:+971582277164",
},
]}
buttons={[{ text: "Call Now", href: "tel:+971582277164" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
@@ -72,22 +54,8 @@ export default function LandingPage() {
title="Visit Us"
description="Find our cafe located in the heart of Abu Dhabi."
features={[
{
id: "loc-1",
title: "Easy Navigation",
descriptions: [
"Search Boqshah on Google Maps.",
],
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-map-with-local-business-gps-pin-location_107791-15046.jpg",
},
{
id: "loc-2",
title: "Parking Available",
descriptions: [
"Dedicated spaces for our guests.",
],
imageSrc: "http://img.b2bpic.net/free-photo/navigation-address-location-direction-icon-sign-symbol-button-blue-speech-bubble-white-background-3d-rendering_56104-1185.jpg",
},
{ id: "loc-1", title: "Easy Navigation", descriptions: ["Search Boqshah on Google Maps."], imageSrc: "http://img.b2bpic.net/free-photo/3d-render-map-with-local-business-gps-pin-location_107791-15046.jpg" },
{ id: "loc-2", title: "Parking Available", descriptions: ["Dedicated spaces for our guests."], imageSrc: "http://img.b2bpic.net/free-photo/navigation-address-location-direction-icon-sign-symbol-button-blue-speech-bubble-white-background-3d-rendering_56104-1185.jpg" },
]}
/>
</div>
@@ -97,29 +65,15 @@ export default function LandingPage() {
logoText="Boqshah Cafe"
columns={[
{
title: "Contact",
items: [
{
label: "058 227 7164",
href: "tel:+971582277164",
},
{
label: "Madinat Zayed, AUH",
href: "#",
},
title: "Contact", items: [
{ label: "058 227 7164", href: "tel:+971582277164" },
{ label: "Madinat Zayed, AUH", href: "#" },
],
},
{
title: "Company",
items: [
{
label: "Menu",
href: "/menu",
},
{
label: "About",
href: "/about",
},
title: "Company", items: [
{ label: "Menu", href: "/menu" },
{ label: "About", href: "/about" },
],
},
]}