Update src/app/about/page.tsx

This commit is contained in:
2026-04-07 22:17:14 +00:00
parent 6600a0e8b0
commit 89482cfaef

View File

@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import TeamCardOne from '@/components/sections/team/TeamCardOne';
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: "About",
id: "/about",
},
{
name: "Products",
id: "/products",
},
{
name: "Stores",
id: "/stores",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Products", id: "/products" },
{ name: "Stores", id: "/stores" },
{ name: "Contact", id: "/contact" },
]}
brandName="Wawelski"
button={{ text: "Visit Now", href: "/stores" }}
/>
</div>
@@ -55,9 +41,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="A Belief in Heritage"
description={[
"Wawelski began with a simple belief: food has the power to bring people together and keep traditions alive. Our shelves are filled with the flavors we grew up with—crafted by artisans, trusted by families, and chosen with intention.",
"We believe that everyday foods can be special. That a slice of fresh sernik or the scent of smoked kielbasa can elevate even the simplest day.",
]}
"Wawelski began with a simple belief: food has the power to bring people together and keep traditions alive. Our shelves are filled with the flavors we grew up with—crafted by artisans, trusted by families, and chosen with intention.", "We believe that everyday foods can be special. That a slice of fresh sernik or the scent of smoked kielbasa can elevate even the simplest day."]}
/>
</div>
@@ -70,18 +54,8 @@ export default function LandingPage() {
title="Meet the Team"
description="Our dedicated staff ensuring the best service."
members={[
{
id: "s1",
name: "Anna",
role: "Founder",
imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865330.jpg?_wi=3",
},
{
id: "s2",
name: "Petr",
role: "Chef",
imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865330.jpg?_wi=4",
},
{ id: "s1", name: "Anna", role: "Founder", imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865330.jpg" },
{ id: "s2", name: "Petr", role: "Chef", imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-learning-make-sushi_23-2149865330.jpg" },
]}
/>
</div>
@@ -89,45 +63,9 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Shop",
items: [
{
label: "All Products",
href: "/products",
},
{
label: "Seasonal",
href: "/products#seasonal",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Locations",
href: "/stores",
},
],
},
{
title: "Contact",
items: [
{
label: "Contact Form",
href: "/contact",
},
{
label: "Email",
href: "mailto:hello@wawelski.co.uk",
},
],
},
{ title: "Shop", items: [{ label: "All Products", href: "/products" }, { label: "Seasonal", href: "/products#seasonal" }] },
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Locations", href: "/stores" }] },
{ title: "Contact", items: [{ label: "Contact Form", href: "/contact" }, { label: "Email", href: "mailto:hello@wawelski.co.uk" }] },
]}
logoText="Wawelski"
/>
@@ -135,4 +73,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}