Update src/app/visit/page.tsx
This commit is contained in:
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Vendors",
|
||||
id: "/vendors",
|
||||
},
|
||||
{
|
||||
name: "Classes",
|
||||
id: "/classes",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Visit Us",
|
||||
id: "/visit",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Vendors", id: "/vendors" },
|
||||
{ name: "Classes", id: "/classes" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Visit Us", id: "/visit" },
|
||||
]}
|
||||
brandName="Main Street Artisans"
|
||||
button={{ text: "Plan Visit", href: "/visit" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -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" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -103,40 +68,8 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="Main Street Artisans"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigate",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Vendors",
|
||||
href: "/vendors",
|
||||
},
|
||||
{
|
||||
label: "Classes",
|
||||
href: "/classes",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Store",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Visit Us",
|
||||
href: "/visit",
|
||||
},
|
||||
{
|
||||
label: "Bookstore",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Vendors", href: "/vendors" }, { label: "Classes", href: "/classes" }] },
|
||||
{ title: "Store", items: [{ label: "About Us", href: "/about" }, { label: "Visit Us", href: "/visit" }, { label: "Bookstore", href: "#" }] },
|
||||
]}
|
||||
copyrightText="© 2024 Main Street Artisans, Greenfield, IN"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user