From a45777ed995bd1d1f7cde6aa525e3a434e9d1bb5 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 22:06:41 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index e32eed5..e1fad7c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import ContactForm from "@/components/form/ContactForm"; import FooterCard from "@/components/sections/footer/FooterCard"; @@ -20,17 +20,19 @@ export default function ContactPage() { secondaryButtonStyle="glass" headingFontWeight="semibold" > - +
@@ -43,6 +45,7 @@ export default function ContactPage() { buttonText="Send Message" termsText="We'll get back to you within 24 hours." centered={true} + useInvertedBackground={false} onSubmit={(email) => console.log("Email:", email)} />
@@ -54,10 +57,12 @@ export default function ContactPage() { socialLinks={[ { icon: Twitter, - href: "https://twitter.com/billiclipd", ariaLabel: "Twitter"}, + href: "https://twitter.com/billiclipd", ariaLabel: "Twitter" + }, { icon: Linkedin, - href: "https://linkedin.com/company/billiclipd", ariaLabel: "LinkedIn"}, + href: "https://linkedin.com/company/billiclipd", ariaLabel: "LinkedIn" + }, ]} /> -- 2.49.1 From 80ae29fc6317d2285b2598ba2a434e8311c5ab5c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 22:06:42 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 73 ++++++++++++++++++++++++++---------------------- 1 file changed, 40 insertions(+), 33 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 86eae75..4774ad3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; @@ -23,17 +23,19 @@ export default function Home() { secondaryButtonStyle="glass" headingFontWeight="semibold" > - +
@@ -95,24 +103,20 @@ export default function Home() { features={[ { id: 1, - title: "Content Analysis", description: - "We analyze your longform content to identify the most viral moments and trending hooks.", imageSrc: - "https://images.unsplash.com/photo-1611532736597-de2d4265fba3?w=500&h=300&fit=crop"}, + title: "Content Analysis", description: "We analyze your longform content to identify the most viral moments and trending hooks.", imageSrc: "https://images.unsplash.com/photo-1611532736597-de2d4265fba3?w=500&h=300&fit=crop" + }, { id: 2, - title: "Professional Editing", description: - "Our expert editors craft high-quality clips optimized for each platform's unique algorithm.", imageSrc: - "https://images.unsplash.com/photo-1598899134739-24c46f58b8c0?w=500&h=300&fit=crop"}, + title: "Professional Editing", description: "Our expert editors craft high-quality clips optimized for each platform's unique algorithm.", imageSrc: "https://images.unsplash.com/photo-1598899134739-24c46f58b8c0?w=500&h=300&fit=crop" + }, { id: 3, - title: "Multi-Platform Optimization", description: - "Each clip is tailored for TikTok, Instagram Reels, and YouTube Shorts with proper formatting.", imageSrc: - "https://images.unsplash.com/photo-1611339555312-e607c90352fd?w=500&h=300&fit=crop"}, + title: "Multi-Platform Optimization", description: "Each clip is tailored for TikTok, Instagram Reels, and YouTube Shorts with proper formatting.", imageSrc: "https://images.unsplash.com/photo-1611339555312-e607c90352fd?w=500&h=300&fit=crop" + }, { id: 4, - title: "Performance Analytics", description: - "Track engagement metrics, reach, and performance across all platforms in real-time.", imageSrc: - "https://images.unsplash.com/photo-1460925895917-aeb19be489c7?w=500&h=300&fit=crop"}, + title: "Performance Analytics", description: "Track engagement metrics, reach, and performance across all platforms in real-time.", imageSrc: "https://images.unsplash.com/photo-1460925895917-aeb19be489c7?w=500&h=300&fit=crop" + }, ]} title="Our Process" description="How we transform your content into viral sensations" @@ -126,7 +130,8 @@ export default function Home() { -- 2.49.1