From 87719cd9f868d0939939e575e006fe75f8d495f1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 7 May 2026 23:16:52 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 77 +++++++++++----------------------------- 1 file changed, 21 insertions(+), 56 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 34f0b21..c4dda2b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -6,8 +6,9 @@ import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import Link from 'next/link'; -export default function LandingPage() { +export default function ContactPage() { return ( @@ -48,10 +37,12 @@ export default function LandingPage() {
@@ -66,13 +57,8 @@ export default function LandingPage() { description="We offer catering for all occasions." metrics={[ { - id: "c1", - value: "24/7", - title: "Support", - items: [ - "Reservation assistance", - "Events planning", - ], + id: "c1", value: "24/7", title: "Support", items: [ + "Reservation assistance", "Events planning"], }, ]} /> @@ -83,42 +69,21 @@ export default function LandingPage() { logoText="Athens Mexican Cuisine" columns={[ { - title: "Visit Us", - items: [ - { - label: "123 Main St, Athens, GA", - href: "#", - }, - { - label: "Call: (706) 555-0123", - href: "tel:7065550123", - }, + title: "Visit Us", items: [ + { label: "123 Main St, Athens, GA", href: "#" }, + { label: "Call: (706) 555-0123", href: "tel:7065550123" }, ], }, { - title: "Hours", - items: [ - { - label: "Mon-Sat: 11am - 10pm", - href: "#", - }, - { - label: "Sun: 11am - 9pm", - href: "#", - }, + title: "Hours", items: [ + { label: "Mon-Sat: 11am - 10pm", href: "#" }, + { label: "Sun: 11am - 9pm", href: "#" }, ], }, { - title: "Social", - items: [ - { - label: "Instagram", - href: "#", - }, - { - label: "Facebook", - href: "#", - }, + title: "Social", items: [ + { label: "Instagram", href: "#" }, + { label: "Facebook", href: "#" }, ], }, ]} -- 2.49.1 From a2047e7dc6339738aa3706e0cfa3f3301c864277 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 7 May 2026 23:16:52 +0000 Subject: [PATCH 2/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index be3ca2a..50273b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Lato } from "next/font/google"; export const metadata: Metadata = { - title: 'Athens Mexican Cuisine | Authentic Mexican Food in Athens, GA', - description: 'Authentic Mexican flavors in the heart of Athens. Fresh ingredients, craft margaritas, and a vibrant atmosphere. Reserve your table today!', + title: 'Contact | Athens Mexican Cuisine', + description: 'Get in touch with Athens Mexican Cuisine for reservations, catering, and inquiries.', openGraph: { "title": "Athens Mexican Cuisine", "description": "Experience authentic Mexican flavor in Athens, GA.", -- 2.49.1