Update src/app/visit/page.tsx
This commit is contained in:
@@ -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",
|
||||
id: "/visit",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Vendors", id: "/vendors" },
|
||||
{ name: "Classes", id: "/classes" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Visit", id: "/visit" },
|
||||
]}
|
||||
brandName="gilded nest"
|
||||
button={{ text: "Map", href: "https://maps.google.com" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -58,22 +44,8 @@ export default function LandingPage() {
|
||||
title="Visit Information"
|
||||
description="Find us in the heart of Greenfield."
|
||||
metrics={[
|
||||
{
|
||||
id: "v1",
|
||||
value: "Open Daily",
|
||||
title: "10am - 8pm",
|
||||
items: [
|
||||
"Weekends 9am - 9pm",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "v2",
|
||||
value: "123 Main St",
|
||||
title: "Greenfield, IN",
|
||||
items: [
|
||||
"Free parking",
|
||||
],
|
||||
},
|
||||
{ id: "v1", value: "Open Daily", title: "10am - 8pm", items: ["Weekends 9am - 9pm"] },
|
||||
{ id: "v2", value: "123 Main St", title: "Greenfield, IN", items: ["Free parking"] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -85,51 +57,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Plan Your Visit"
|
||||
description="What to expect when you arrive."
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Easy Access",
|
||||
"Community Cafe",
|
||||
"Wheelchair Friendly",
|
||||
],
|
||||
}}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"No Pets Inside",
|
||||
"Smoking Prohibited",
|
||||
],
|
||||
}}
|
||||
positiveCard={{ items: ["Easy Access", "Community Cafe", "Wheelchair Friendly"] }}
|
||||
negativeCard={{ items: ["No Pets Inside", "Smoking Prohibited"] }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
{
|
||||
label: "Vendors",
|
||||
href: "/vendors",
|
||||
},
|
||||
{
|
||||
label: "Bookstore",
|
||||
href: "/bookstore",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Visit",
|
||||
items: [
|
||||
{
|
||||
label: "Hours & Map",
|
||||
href: "/visit",
|
||||
},
|
||||
{
|
||||
label: "Community",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Shop", items: [{ label: "Vendors", href: "/vendors" }, { label: "Bookstore", href: "/bookstore" }] },
|
||||
{ title: "Visit", items: [{ label: "Hours & Map", href: "/visit" }, { label: "Community", href: "/about" }] }
|
||||
]}
|
||||
logoText="gilded nest"
|
||||
/>
|
||||
@@ -137,4 +74,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user