Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-04-28 08:26:56 +00:00

View File

@@ -8,7 +8,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -23,58 +23,59 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Projects", id: "/projects" },
{ name: "Contact", id: "/contact" },
]}
brandName="NEON STUDIOS"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Projects", id: "/projects" },
{ name: "Contact", id: "/contact" },
]}
brandName="NEON STUDIOS"
/>
</div>
<div id="contact-section" data-section="contact-section">
<ContactText
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
text="Have a project in mind? Let's connect and build the next big thing together."
buttons={[{ text: "Contact Us", href: "mailto:hello@neonstudios.com" }]}
/>
</div>
<div id="contact-section" data-section="contact-section">
<ContactText
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
text="Have a project in mind? Let's connect and build the next big thing together."
buttons={[{ text: "Contact Us", href: "mailto:hello@neonstudios.com" }]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Privacy Policy"
sections={[
{
heading: "Data Usage", content: "We respect your digital footprint and use data only to improve game performance."},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Privacy Policy"
sections={[
{
heading: "Data Usage", content: [{ type: "paragraph", text: "We respect your digital footprint and use data only to improve game performance." }]
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Get in touch"
title="Let's collaborate"
description="Have an exciting idea? Reach out to our design lead."
buttons={[{ text: "Email Us", href: "mailto:support@neonstudios.com" }]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Get in touch"
title="Let's collaborate"
description="Have an exciting idea? Reach out to our design lead."
buttons={[{ text: "Email Us", href: "mailto:support@neonstudios.com" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "About", href: "/about" }, { label: "Projects", href: "/projects" }] },
{ items: [{ label: "Contact", href: "/contact" }, { label: "Careers", href: "#" }] },
]}
logoText="NEON STUDIOS"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "About", href: "/about" }, { label: "Projects", href: "/projects" }] },
{ items: [{ label: "Contact", href: "/contact" }, { label: "Careers", href: "#" }] },
]}
logoText="NEON STUDIOS"
/>
</div>
</ReactLenis>
</ThemeProvider>
);