Update src/app/contact/page.tsx
This commit is contained in:
@@ -26,22 +26,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Projects",
|
||||
id: "/projects",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Projects", id: "/projects" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="NEON STUDIOS"
|
||||
/>
|
||||
@@ -50,16 +38,9 @@ export default function LandingPage() {
|
||||
<div id="contact-section" data-section="contact-section">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
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",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Contact Us", href: "mailto:hello@neonstudios.com" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -69,12 +50,7 @@ export default function LandingPage() {
|
||||
title="Privacy Policy"
|
||||
sections={[
|
||||
{
|
||||
heading: "Data Usage",
|
||||
content: {
|
||||
type: "paragraph",
|
||||
text: "We respect your digital footprint and use data only to improve game performance.",
|
||||
},
|
||||
},
|
||||
heading: "Data Usage", content: "We respect your digital footprint and use data only to improve game performance."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -82,48 +58,19 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
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",
|
||||
},
|
||||
]}
|
||||
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: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "About", href: "/about" }, { label: "Projects", href: "/projects" }] },
|
||||
{ items: [{ label: "Contact", href: "/contact" }, { label: "Careers", href: "#" }] },
|
||||
]}
|
||||
logoText="NEON STUDIOS"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user