diff --git a/src/app/page.tsx b/src/app/page.tsx
index 992f62b..fc03bff 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -34,20 +34,22 @@ export default function LandingPage() {
@@ -70,9 +72,9 @@ export default function LandingPage() {
enableKpiAnimation={true}
buttons={[
{
- text: "Start Free Trial", href: "#pricing"},
+ text: "Start Free Trial", href: "/#pricing"},
{
- text: "Watch Demo", href: "#about"},
+ text: "Watch Demo", href: "/#about"},
]}
avatars={[
{
@@ -159,7 +161,7 @@ export default function LandingPage() {
{
id: "product-explainer", name: "Product Demos", price: "Free Tier", variant: "Up to 3/month", imageSrc: "http://img.b2bpic.net/free-photo/3d-glasses-forming-frame_23-2147775801.jpg", imageAlt: "Product explainer"},
{
- id: "tutorial-series", name: "AI Tutorial Series", price: "Premium Tier", variant: "Full Series", imageSrc: "http://img.b2bpic.net/free-photo/woman-discussing-with-client-online_482257-120354.jpg", imageAlt: "AI tutorial series"},
+ id: "tutorial-series", name: "AI Tutorial Series", price: "Premium Tier", variant: "Full Series", imageSrc: "http://img.b2bpic.net/free-photo/woman-discussing-with-client-online_482257-120354.jpg", alt: "AI tutorial series"},
]}
title="Showcase Your AI-Generated Content"
description="Explore the diverse range of video content our AI platform can create, from dynamic shorts to full-length AI-generated narratives for any platform."
@@ -277,12 +279,12 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/youtube/page.tsx b/src/app/youtube/page.tsx
new file mode 100644
index 0000000..c07cdfe
--- /dev/null
+++ b/src/app/youtube/page.tsx
@@ -0,0 +1,69 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import ContactCenter from '@/components/sections/contact/ContactCenter';
+import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
+
+export default function YouTubeIntegrationPage() {
+ const handleUrlSubmit = (url: string) => {
+ // This would be where a backend API call is made.
+ // For now, it's a placeholder.
+ alert(`Received YouTube URL: ${url}\n(Video processing logic would go here)`);
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file