110 lines
4.5 KiB
TypeScript
110 lines
4.5 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
import { Camera, Sparkles, Mail } from "lucide-react";
|
|
import Link from "next/link";
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="medium"
|
|
background="circleGradient"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="bold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Post Productionss"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Services", id: "/services" },
|
|
{ name: "Portfolio", id: "/portfolio" },
|
|
{ name: "Contact", id: "/contact" },
|
|
]}
|
|
button={{ text: "Get in Touch", href: "/contact" }}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact-hero" data-section="contact-hero">
|
|
<HeroSplit
|
|
title="Let's Create Something Beautiful Together"
|
|
description="Get in touch with Post Productionss. Whether you have questions about our services, want to book a session, or simply wish to discuss your creative vision, we're here to help and excited to collaborate with you."
|
|
tag="Get in Touch"
|
|
tagIcon={Camera}
|
|
tagAnimation="slide-up"
|
|
background={{ variant: "plain" }}
|
|
imageSrc="http://img.b2bpic.net/free-photo/table-with-content-creator-stuff-camera-microphone-tripod-headphones-working-from-home_1268-17410.jpg"
|
|
imageAlt="Post Productionss contact - studio workspace"
|
|
imagePosition="right"
|
|
mediaAnimation="slide-up"
|
|
buttons={[
|
|
{ text: "Email Us", href: "mailto:hello@postproductionss.com" },
|
|
{ text: "WhatsApp", href: "https://wa.me/6281234567890" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact-cta" data-section="contact-cta">
|
|
<ContactCTA
|
|
tag="Ready to Create Magic?"
|
|
tagIcon={Sparkles}
|
|
tagAnimation="slide-up"
|
|
title="Reach Out to Post Productionss"
|
|
description="We'd love to hear about your project. Whether it's a wedding, event, celebration, or any special moment you want to preserve, contact us to discuss your vision and how we can bring it to life."
|
|
buttons={[
|
|
{ text: "Contact Us Today", href: "mailto:hello@postproductionss.com" },
|
|
{ text: "Schedule a Call", href: "https://wa.me/6281234567890" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBase
|
|
logoText="Post Productionss"
|
|
copyrightText="© 2025 Post Productionss. All moments deserve to be preserved."
|
|
columns={[
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Wedding Photography", href: "/services" },
|
|
{ label: "Event Coverage", href: "/services" },
|
|
{ label: "Videography", href: "/services" },
|
|
{ label: "Engagement Sessions", href: "/services" },
|
|
],
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Our Portfolio", href: "/portfolio" },
|
|
{ label: "Meet Our Team", href: "/team" },
|
|
{ label: "Testimonials", href: "/testimonials" },
|
|
],
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{ label: "Contact Us", href: "/contact" },
|
|
{ label: "Instagram", href: "https://instagram.com/postproductionss" },
|
|
{ label: "WhatsApp", href: "https://wa.me/6281234567890" },
|
|
{ label: "Email", href: "mailto:hello@postproductionss.com" },
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |