Update src/app/about/page.tsx

This commit is contained in:
2026-05-11 18:23:51 +00:00
parent edd6a4c35c
commit a240f3271d

View File

@@ -7,93 +7,62 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Shop",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "Terms",
id: "/terms",
},
]}
brandName="GlobalStore"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Terms", id: "/terms" }
]}
brandName="GlobalStore"
button={{ text: "Get Started" }}
/>
</div>
<div id="about-section" data-section="about-section">
<MediaAbout
useInvertedBackground={false}
title="About Our Global Brand"
description="We provide premium goods to customers across the globe, ensuring high quality and satisfaction in both English and Hungarian markets."
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-business-meeting-yellow-working-room-with-stair_105762-1996.jpg"
imageAlt="modern business office interior"
/>
</div>
<div id="about-section" data-section="about-section">
<MediaAbout
useInvertedBackground={false}
title="About Our Global Brand"
description="We provide premium goods to customers across the globe, ensuring high quality and satisfaction in both English and Hungarian markets."
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-business-meeting-yellow-working-room-with-stair_105762-1996.jpg"
imageAlt="modern business office interior"
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={false}
title="Our Philosophy"
description={[
"Quality above all.",
"Customer satisfaction is our mission.",
]}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={false}
title="Our Philosophy"
description="Quality above all. Customer satisfaction is our mission."
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669154.jpg?_wi=3"
logoText="GlobalStore"
columns={[
{
title: "Navigation",
items: [
{
label: "Shop",
href: "/shop",
},
{
label: "About",
href: "/about",
},
],
},
{
title: "Legal",
items: [
{
label: "Terms / ÁSZF",
href: "/terms",
},
{
label: "Privacy",
href: "#",
},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669154.jpg"
logoText="GlobalStore"
columns={[
{ title: "Navigation", items: [{ label: "Shop", href: "/shop" }, { label: "About", href: "/about" }] },
{ title: "Legal", items: [{ label: "Terms / ÁSZF", href: "/terms" }, { label: "Privacy", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);