diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index ccfe3e6..7c4c5a3 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
-import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
+import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
-import { Sparkles } from "lucide-react";
+import { Phone, Mail, MessageCircle } from "lucide-react";
export default function AboutPage() {
return (
@@ -33,21 +33,28 @@ export default function AboutPage() {
/>
-
-
+
@@ -60,4 +67,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index c62bab0..0421a2a 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -2,8 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
-import ContactSplit from '@/components/sections/contact/ContactSplit';
-import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
+import ContactFaq from '@/components/sections/contact/ContactFaq';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+import { Phone, Mail, MessageCircle } from "lucide-react";
export default function ContactPage() {
return (
@@ -33,43 +34,37 @@ export default function ContactPage() {
- console.log('Contact form submitted:', email)}
/>
);
-}
\ No newline at end of file
+}
diff --git a/src/app/enterprise/page.tsx b/src/app/enterprise/page.tsx
new file mode 100644
index 0000000..7de83ec
--- /dev/null
+++ b/src/app/enterprise/page.tsx
@@ -0,0 +1,73 @@
+"use client"
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import ContactFaq from '@/components/sections/contact/ContactFaq';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+import { Phone, Mail, MessageCircle } from "lucide-react";
+
+export default function EnterprisePage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 8fcef8a..57f2a7b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -174,12 +174,12 @@ export default function LandingPage() {
},
{
id: "professional", badge: "Most Popular", badgeIcon: Zap,
- price: "$350/mo", subtitle: "Comprehensive creative support", buttons: [{ text: "Get Started", href: "/contact" }],
+ price: "$350/mo", subtitle: "Comprehensive creative support", buttons: [{ text: "Get Started", href: "/about" }],
features: ["8-12 ad variations", "Diverse visual angles", "Copy testing variations", "Multiple formats and sizes", "Platform-optimized specs", "Priority support"]
},
{
id: "enterprise", badge: "For Scaling Brands", badgeIcon: Rocket,
- price: "$500/mo", subtitle: "Maximum creative output and strategy", buttons: [{ text: "Get Started", href: "/contact" }],
+ price: "$500/mo", subtitle: "Maximum creative output and strategy", buttons: [{ text: "Get Started", href: "/enterprise" }],
features: ["15+ ad variations monthly", "A/B testing frameworks", "Video and static assets", "Campaign-specific creative", " Creative tailored to your offer and audience", "Dedicated creative support", "Structured revision rounds included "]
}
]}
@@ -227,4 +227,4 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/professional-tier/page.tsx b/src/app/professional-tier/page.tsx
new file mode 100644
index 0000000..7573146
--- /dev/null
+++ b/src/app/professional-tier/page.tsx
@@ -0,0 +1,150 @@
+"use client"
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import HeroBillboard from '@/components/sections/hero/HeroBillboard';
+import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+import { Zap, CheckCircle, Sparkles } from "lucide-react";
+
+export default function ProfessionalTierPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/starter-tier/page.tsx b/src/app/starter-tier/page.tsx
new file mode 100644
index 0000000..768ce92
--- /dev/null
+++ b/src/app/starter-tier/page.tsx
@@ -0,0 +1,142 @@
+"use client"
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import HeroBillboard from '@/components/sections/hero/HeroBillboard';
+import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+import { Zap, CheckCircle, Sparkles } from "lucide-react";
+
+export default function StarterTierPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file