Update src/app/about/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
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: "Learn More", href: "/about" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -54,10 +40,7 @@ export default function LandingPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "The Story of Main Street Artisans",
|
||||
},
|
||||
{ type: "text", content: "The Story of Main Street Artisans" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -67,8 +50,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Mission"
|
||||
description={[
|
||||
"To preserve traditional crafts while fostering innovation in Greenfield.",
|
||||
]}
|
||||
"To preserve traditional crafts while fostering innovation in Greenfield."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -76,40 +58,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