2 Commits

Author SHA1 Message Date
8073c1c759 Update src/app/contact/page.tsx 2026-05-12 23:17:27 +00:00
dd88b0ac77 Merge version_1 into main
Merge version_1 into main
2026-05-12 23:14:50 +00:00

View File

@@ -26,21 +26,13 @@ export default function LandingPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "Shop", name: "Shop", id: "/shop"},
id: "/shop",
},
{ {
name: "About", name: "About", id: "/about"},
id: "/about",
},
{ {
name: "Contact", name: "Contact", id: "/contact"},
id: "/contact",
},
]} ]}
brandName="DOCLCINI" brandName="DOCLCINI"
/> />
@@ -50,11 +42,10 @@ export default function LandingPage() {
<ContactCenter <ContactCenter
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "plain", variant: "plain"}}
}}
tag="Visit Us" tag="Visit Us"
title="We are located in Al-Dajeej" title="We are located in Al-Dajeej"
description="Connect with our café team today." description="Connect with our café team today at 7X77+2HP Homz Mall, Street -79, Al-Dajeej 85000."
/> />
</div> </div>
@@ -67,19 +58,9 @@ export default function LandingPage() {
description="We are available for private events and catering." description="We are available for private events and catering."
metrics={[ metrics={[
{ {
id: "c1", id: "c1", value: "24/7", title: "Support", description: "Always here to help", imageSrc: "http://img.b2bpic.net/free-photo/stylish-businesswoman-with-laptop-cosy-coffee-shop_23-2147989647.jpg"},
value: "24/7",
title: "Support",
description: "Always here to help",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-businesswoman-with-laptop-cosy-coffee-shop_23-2147989647.jpg",
},
{ {
id: "c2", id: "c2", value: "10 min", title: "Response", description: "Swift booking process", imageSrc: "http://img.b2bpic.net/free-photo/attractive-girl-talking-phone_158595-1007.jpg"},
value: "10 min",
title: "Response",
description: "Swift booking process",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-girl-talking-phone_158595-1007.jpg",
},
]} ]}
/> />
</div> </div>
@@ -88,16 +69,12 @@ export default function LandingPage() {
<FooterLogoReveal <FooterLogoReveal
logoText="DOCLCINI" logoText="DOCLCINI"
leftLink={{ leftLink={{
text: "Privacy Policy", text: "Privacy Policy", href: "#"}}
href: "#",
}}
rightLink={{ rightLink={{
text: "Terms of Service", text: "Terms of Service", href: "#"}}
href: "#",
}}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }