Update src/app/terms/page.tsx

This commit is contained in:
2026-05-11 18:23:52 +00:00
parent 11c1785a89
commit 768de87144

View File

@@ -7,124 +7,76 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function TermsPage() {
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="terms-and-conditions" data-section="terms-and-conditions">
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "Shipping / Szállítás",
content: "We ship globally. Worldwide shipping is 5-10 business days.",
},
{
id: "2",
title: "Returns / Visszaküldés",
content: "You can return items within 30 days of purchase.",
},
{
id: "3",
title: "Privacy / Adatvédelem",
content: "We value your privacy and comply with GDPR regulations.",
},
]}
mediaAnimation="slide-up"
title="Terms and Conditions / ÁSZF"
description="Our official terms in English and Hungarian."
faqsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/vacant-office-with-organized-technology_482257-119524.jpg"
imageAlt="Vacant office with organized technology"
/>
</div>
<div id="terms-and-conditions" data-section="terms-and-conditions">
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "Shipping / Szállítás", content: "We ship globally. Worldwide shipping is 5-10 business days." },
{ id: "2", title: "Returns / Visszaküldés", content: "You can return items within 30 days of purchase." },
{ id: "3", title: "Privacy / Adatvédelem", content: "We value your privacy and comply with GDPR regulations." }
]}
mediaAnimation="slide-up"
title="Terms and Conditions / ÁSZF"
description="Our official terms in English and Hungarian."
faqsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/vacant-office-with-organized-technology_482257-119524.jpg"
imageAlt="Vacant office with organized technology"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Get in Touch"
description="Contact us for questions about terms."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
},
{
name: "email",
type: "email",
placeholder: "Email Address",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/view-modern-office_1170-1963.jpg"
imageAlt="View of modern office"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Get in Touch"
description="Contact us for questions about terms."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name" },
{ name: "email", type: "email", placeholder: "Email Address" }
]}
imageSrc="http://img.b2bpic.net/free-photo/view-modern-office_1170-1963.jpg"
imageAlt="View of modern office"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669154.jpg?_wi=4"
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>
);