Files
8f16cc47-e460-446a-87ae-2f9…/src/app/contact/page.tsx
2026-01-19 19:38:16 +02:00

83 lines
2.9 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="mediumSizeLargeTitles"
background="aurora"
cardStyle="layered-gradient"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="NEXUS"
navItems={[
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to elevate your brand's social media presence? Let's create something extraordinary together. Schedule your free consultation with our team today."
animationType="entrance-slide"
useInvertedBackground="noInvert"
buttons={[
{ text: "Schedule Consultation", href: "https://calendly.com/nexus-agency" },
{ text: "Contact Us", href: "mailto:hello@nexus-agency.com" }
]}
/>
</div>
<FooterLogoEmphasis
logoText="NEXUS"
columns={[
{
items: [
{ label: "Services", href: "/services" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Pricing", href: "/pricing" }
]
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Team", href: "/about" },
{ label: "Careers", href: "https://nexus-agency.com/careers" }
]
},
{
items: [
{ label: "Contact", href: "/contact" },
{ label: "hello@nexus-agency.com", href: "mailto:hello@nexus-agency.com" },
{ label: "+1 (555) 123-4567", href: "tel:+15551234567" }
]
},
{
items: [
{ label: "Twitter", href: "https://twitter.com/nexus-agency" },
{ label: "Instagram", href: "https://instagram.com/nexus-agency" },
{ label: "LinkedIn", href: "https://linkedin.com/company/nexus-agency" }
]
}
]}
/>
</ThemeProvider>
);
}