Update src/app/contact/page.tsx

This commit is contained in:
2026-04-24 12:00:11 +00:00
parent 19adc46c69
commit a8afef0fc0

View File

@@ -8,7 +8,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -26,33 +26,20 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Contact", id: "/contact" },
]}
brandName="Baciami"
button={{ text: "Order Now", href: "/menu" }}
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Visit Us"
title="Find Your Coffee Moment"
description="We are located at Jubilee Hills, Hyderabad. Open daily from 8:00 AM to 10:00 PM."
@@ -68,15 +55,11 @@ export default function LandingPage() {
cardAnimation="slide-up"
testimonials={[
{
id: "r1",
name: "Rahul",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-happy-young-man-relaxing-coffee-shop-spending-time-cafe-listening_1258-245399.jpg",
},
id: "r1", name: "Rahul", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-happy-young-man-relaxing-coffee-shop-spending-time-cafe-listening_1258-245399.jpg"},
{
id: "r2",
name: "Sara",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-holding-cup-table_1170-732.jpg",
},
id: "r2", name: "Sara", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-holding-cup-table_1170-732.jpg"},
{
id: "r3", name: "Rahul", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-happy-young-man-relaxing-coffee-shop-spending-time-cafe-listening_1258-245399.jpg"}
]}
/>
</div>
@@ -88,12 +71,7 @@ export default function LandingPage() {
title="Visit Us Today"
description="Find our storefront in the heart of Jubilee Hills."
names={[
"Map Direction",
"Parking Available",
"WiFi Enabled",
"Outdoor Seating",
"Pet Friendly",
]}
"Map Direction", "Parking Available", "WiFi Enabled", "Outdoor Seating", "Pet Friendly"]}
/>
</div>
@@ -102,38 +80,20 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Menu",
href: "/menu",
},
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
],
},
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Twitter",
href: "#",
},
{ label: "Instagram", href: "#" },
{ label: "Twitter", href: "#" },
],
},
]}