|
|
|
@@ -2,9 +2,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
|
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|
|
|
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
|
|
|
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
|
|
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
|
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
|
|
|
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
|
|
|
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
|
|
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
|
|
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
|
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
|
|
@@ -119,29 +119,30 @@ export default function LandingPage() {
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
<ContactCTA
|
|
|
|
<ContactSplitForm
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
|
|
|
background={{ variant: "plain" }}
|
|
|
|
|
|
|
|
tag="Let's Connect"
|
|
|
|
|
|
|
|
title="Ready for your next project?"
|
|
|
|
title="Ready for your next project?"
|
|
|
|
description="Based in Bucharest, Romania. Available for site visits across Europe. Reach out via email or connect on LinkedIn."
|
|
|
|
description="Based in Bucharest, Romania. Available for site visits across Europe. Reach out via email or connect with us."
|
|
|
|
buttons={[
|
|
|
|
inputs={[
|
|
|
|
{ text: "Contact BAV Media", href: "mailto:hello@bavmedia.ro" },
|
|
|
|
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
|
|
|
{ text: "LinkedIn Profile", href: "https://linkedin.com" }
|
|
|
|
{ name: "email", type: "email", placeholder: "Email Address", required: true }
|
|
|
|
]}
|
|
|
|
]}
|
|
|
|
|
|
|
|
textarea={{ name: "message", placeholder: "How can we help with your project?", rows: 4 }}
|
|
|
|
|
|
|
|
buttonText="Send Inquiry"
|
|
|
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
<FooterLogoEmphasis
|
|
|
|
<FooterBase
|
|
|
|
columns={[
|
|
|
|
columns={[
|
|
|
|
{ items: [{ label: "Portfolio", href: "#portfolio" }, { label: "Services", href: "#services" }, { label: "About", href: "#about" }] },
|
|
|
|
{ title: "Work", items: [{ label: "Portfolio", href: "#portfolio" }, { label: "Services", href: "#services" }] },
|
|
|
|
{ items: [{ label: "Contact", href: "#contact" }, { label: "LinkedIn", href: "https://linkedin.com" }] }
|
|
|
|
{ title: "About", items: [{ label: "The Story", href: "#about" }, { label: "Contact", href: "#contact" }] }
|
|
|
|
]}
|
|
|
|
]}
|
|
|
|
logoText="BAV Media"
|
|
|
|
logoText="BAV Media"
|
|
|
|
|
|
|
|
copyrightText="© 2025 BAV Media | Industrial Visuals"
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</ReactLenis>
|
|
|
|
</ReactLenis>
|
|
|
|
</ThemeProvider>
|
|
|
|
</ThemeProvider>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|