Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-05-23 21:06:39 +00:00

View File

@@ -7,7 +7,7 @@ import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -22,102 +22,64 @@ export default function LandingPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Catering",
id: "/catering",
},
{
name: "Reservations",
id: "/reservations",
},
{
name: "About",
id: "/about",
},
]}
brandName="ABC Barbeque"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Catering", id: "/catering" },
{ name: "Reservations", id: "/reservations" },
{ name: "About", id: "/about" },
]}
brandName="ABC Barbeque"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Our Smoking Story"
sections={[
{
heading: "Our Roots",
content: {
type: "paragraph",
text: "ABC Barbeque was born in the backyards of Cambridge, fueled by a passion for slow-cooked perfection.",
},
},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Our Smoking Story"
sections={[
{
heading: "Our Roots", content: {
text: "ABC Barbeque was born in the backyards of Cambridge, fueled by a passion for slow-cooked perfection."},
},
]}
/>
</div>
<div id="socialProof" data-section="socialProof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={false}
title="Meet The Pitmasters"
description="The hands behind the fire."
names={[
"Head Pitmaster Alex",
"Chef Jamie",
"Sous-Chef Sam",
]}
/>
</div>
<div id="socialProof" data-section="socialProof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={false}
title="Meet The Pitmasters"
description="The hands behind the fire."
names={[
"Head Pitmaster Alex", "Chef Jamie", "Sous-Chef Sam"]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Links",
items: [
{
label: "Menu",
href: "/menu",
},
{
label: "Catering",
href: "/catering",
},
{
label: "About",
href: "/about",
},
],
},
{
title: "Contact",
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Reservations",
href: "/reservations",
},
],
},
]}
bottomLeftText="© 2024 ABC Barbeque, Cambridge"
bottomRightText="Accessibility Policy"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Links", items: [
{ label: "Menu", href: "/menu" },
{ label: "Catering", href: "/catering" },
{ label: "About", href: "/about" },
],
},
{
title: "Contact", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Reservations", href: "/reservations" },
],
},
]}
bottomLeftText="© 2024 ABC Barbeque, Cambridge"
bottomRightText="Accessibility Policy"
/>
</div>
</ReactLenis>
</ThemeProvider>
);