From ed497f179e634db90b8ba388dfaae9c9ffc1eeae Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 23 May 2026 02:39:20 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 289 ++++++++--------------------------------------- 1 file changed, 47 insertions(+), 242 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1020a64..8f22c3a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,19 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FeatureBento from '@/components/sections/feature/FeatureBento'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import { MessageSquare, Smartphone, Sparkles } from "lucide-react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import Input from '@/components/form/Input'; +import ButtonElasticEffect from '@/components/button/ButtonElasticEffect/ButtonElasticEffect'; +import { useState } from "react"; + +export default function ClipToolPage() { + const [videoUrl, setVideoUrl] = useState(""); -export default function LandingPage() { return ( - + -
- -
+
+

ClipGen AI Tool

+

Paste your YouTube video URL below to start generating high-impact clips with custom layout and caption settings.

+ +
+ + +
+
+

Captions

+

Enable AI-powered subtitles

+
+
+

Layout

+

Optimize for TikTok/Reels

+
+
+

Timeframe

+

Select clip duration

+
+
-
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - + alert(`Generating clips for: ${videoUrl}`)} + className="w-full" + /> +
+
); -} +} \ No newline at end of file