6 Commits

Author SHA1 Message Date
33b6d1838a Update src/app/page.tsx 2026-04-07 11:44:40 +00:00
660b4244ef Update src/app/styles/variables.css 2026-04-07 11:44:08 +00:00
fe668740db Update src/app/page.tsx 2026-04-07 11:44:07 +00:00
78eef42ca3 Merge version_1 into main
Merge version_1 into main
2026-04-07 11:41:32 +00:00
502741d687 Merge version_1 into main
Merge version_1 into main
2026-04-07 11:41:08 +00:00
feba1da0bd Merge version_1 into main
Merge version_1 into main
2026-04-07 11:40:39 +00:00
2 changed files with 16 additions and 15 deletions

View File

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

View File

@@ -11,7 +11,7 @@
--background-accent: #ffffff; */
--background: #0a0a0a;
--card: #121212;
--card: #1a1a1a;
--foreground: #ffffff;
--primary-cta: #FF6B00;
--primary-cta-text: #ffffff;