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"
+ },
]}
/>
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() {