Update src/app/about/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Order",
|
||||
id: "/order",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Order", id: "/order" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Java Cafe"
|
||||
button={{ text: "Order Now", href: "/order" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -55,9 +41,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Story"
|
||||
description={[
|
||||
"At Java Cafe, we are dedicated to bringing the finest beans from around the world to your cup.",
|
||||
"Our passion for coffee started small, and today we continue to grow alongside our wonderful community.",
|
||||
]}
|
||||
"At Java Cafe, we are dedicated to bringing the finest beans from around the world to your cup.", "Our passion for coffee started small, and today we continue to grow alongside our wonderful community."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -70,12 +54,7 @@ export default function LandingPage() {
|
||||
title="Our Baristas"
|
||||
description="The heart of Java Cafe."
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Anna",
|
||||
role: "Head Barista",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg?_wi=3",
|
||||
},
|
||||
{ id: "1", name: "Anna", role: "Head Barista", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-with-guitar_23-2151169639.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -83,30 +62,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Order",
|
||||
href: "/order",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
|
||||
{ items: [{ label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
logoText="Java Cafe"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user