From 80e39a02b102cb11a2024b2e61199fcd5de7ca3a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 03:48:41 +0000 Subject: [PATCH] Update src/app/visit/page.tsx --- src/app/visit/page.tsx | 93 ++++++------------------------------------ 1 file changed, 13 insertions(+), 80 deletions(-) diff --git a/src/app/visit/page.tsx b/src/app/visit/page.tsx index 06b6ac5..aa38028 100644 --- a/src/app/visit/page.tsx +++ b/src/app/visit/page.tsx @@ -7,7 +7,7 @@ import FaqBase from '@/components/sections/faq/FaqBase'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -export default function LandingPage() { +export default function VisitPage() { return ( @@ -55,21 +41,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} faqs={[ - { - id: "q1", - title: "Where are you located?", - content: "123 Main Street, Greenfield, Indiana.", - }, - { - id: "q2", - title: "What are your hours?", - content: "Tuesday-Saturday: 10am-6pm. Sunday: 12pm-4pm.", - }, - { - id: "q3", - title: "Is there parking nearby?", - content: "Yes, street parking is available, plus a public lot behind the shop.", - }, + { id: "q1", title: "Where are you located?", content: "123 Main Street, Greenfield, Indiana." }, + { id: "q2", title: "What are your hours?", content: "Tuesday-Saturday: 10am-6pm. Sunday: 12pm-4pm." }, + { id: "q3", title: "Is there parking nearby?", content: "Yes, street parking is available, plus a public lot behind the shop." }, ]} title="Visit Us in Greenfield" description="Located on historic Main Street. We can't wait to see you!" @@ -85,16 +59,7 @@ export default function LandingPage() { title="Parking & Accessibility" description="Plan your visit with our handy guide." blogs={[ - { - id: "a1", - category: "Guide", - title: "Parking Tips", - excerpt: "Avoid the hassle with our parking map.", - imageSrc: "http://img.b2bpic.net/free-photo/wide-angle-shot-wooden-construction-surrounded-by-buildings_181624-12724.jpg", - authorName: "Main Street Staff", - authorAvatar: "http://img.b2bpic.net/free-photo/profile-charming-professional-young-female-designer-dressed-stylish-wear-enjoying-process-creation-holding-pencil-sketching-large-tablet-people-creativity-art-design-concept_273609-329.jpg", - date: "Nov 1st", - }, + { id: "a1", category: "Guide", title: "Parking Tips", excerpt: "Avoid the hassle with our parking map.", imageSrc: "http://img.b2bpic.net/free-photo/wide-angle-shot-wooden-construction-surrounded-by-buildings_181624-12724.jpg", authorName: "Main Street Staff", authorAvatar: "http://img.b2bpic.net/free-photo/profile-charming-professional-young-female-designer-dressed-stylish-wear-enjoying-process-creation-holding-pencil-sketching-large-tablet-people-creativity-art-design-concept_273609-329.jpg", date: "Nov 1st" }, ]} /> @@ -103,40 +68,8 @@ export default function LandingPage() {