From 26f22f24c8be0fe774771d8c4c59916d654b4e30 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 5 Jun 2026 19:57:27 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) 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 -- 2.49.1 From 03db6993bf4f0d15a07a0bd9f6ceda779adf9e70 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 5 Jun 2026 19:57:27 +0000 Subject: [PATCH 2/2] Add src/app/youtube/page.tsx --- src/app/youtube/page.tsx | 69 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/app/youtube/page.tsx 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 -- 2.49.1