Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-09 23:03:10 +00:00
2 changed files with 13 additions and 46 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "ClipForge AI - Turn Long Videos Into Viral Shorts", description: "AI-powered platform to convert long-form videos into optimized short clips for TikTok, Instagram Reels & YouTube Shorts. Auto-captions, viral moment detection, instant downloads.", keywords: "video editing, AI video tool, short form content, TikTok, Instagram Reels, YouTube Shorts, viral clips, content creation, automation", robots: {
index: true,
follow: true,
},
openGraph: {
title: "ClipForge AI - Turn Long Videos Into Viral Shorts", description: "Create professional short-form videos in seconds with AI. Detect viral moments, add auto-captions, format for all platforms.", type: "website", siteName: "ClipForge AI", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AjDJWff692sCRoXcZLHq1oSI5E/a-sleek-modern-ai-dashboard-interface-fo-1773097087288-71ebd86b.png", alt: "ClipForge AI Dashboard"},
],
},
twitter: {
card: "summary_large_image", title: "ClipForge AI - AI-Powered Short Video Creation", description: "Transform long videos into viral clips instantly. AI detects engaging moments and auto-formats for TikTok, Reels & Shorts.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AjDJWff692sCRoXcZLHq1oSI5E/a-sleek-modern-ai-dashboard-interface-fo-1773097087288-71ebd86b.png"],
},
};
title: "ClipForge AI", description: "Transform long-form videos into viral short clips instantly"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -46,7 +46,7 @@ export default function LandingPage() {
description="Transform long-form videos into viral short clips instantly. AI-powered editing that detects engaging moments, adds auto-subtitles, and formats for TikTok, Instagram Reels, and YouTube Shorts. Grow your audience faster."
background={{ variant: "plain" }}
buttons={[
{ text: "Create Your First Clip", href: "#pricing" },
{ text: "Start Free Trial", href: "#pricing" },
{ text: "Watch Demo", href: "#" }
]}
layoutOrder="default"
@@ -110,19 +110,22 @@ export default function LandingPage() {
tagIcon={CreditCard}
plans={[
{
id: "starter", tag: "Starter Plan", price: "$9", period: "/month", description: "Perfect for creators just starting their short-form journey.", button: { text: "Subscribe Now", href: "#" }, featuresTitle: "What's Included:", features: [
id: "starter", tag: "Starter Plan", price: "$9", period: "/month", description: "Perfect for creators just starting their short-form journey.", button: { text: "Subscribe Now", href: "#" },
featuresTitle: "What's Included:", features: [
"10 clips per month", "720p video quality", "Auto-captions in 5 languages", "Basic analytics dashboard", "Email support"
]
},
{
id: "creator", tag: "Creator Plan", tagIcon: Sparkles,
price: "$29", period: "/month", description: "Designed for serious content creators scaling their presence.", button: { text: "Subscribe Now", href: "#" }, featuresTitle: "What's Included:", features: [
price: "$29", period: "/month", description: "Designed for serious content creators scaling their presence.", button: { text: "Subscribe Now", href: "#" },
featuresTitle: "What's Included:", features: [
"50 clips per month", "1080p video quality", "Auto-captions in 15 languages", "Advanced analytics & insights", "Trending effects library", "Priority support"
]
},
{
id: "pro", tag: "Pro Plan", tagIcon: Zap,
price: "$79", period: "/month", description: "For agencies and professional creators maximizing revenue.", button: { text: "Subscribe Now", href: "#" }, featuresTitle: "What's Included:", features: [
price: "$79", period: "/month", description: "For agencies and professional creators maximizing revenue.", button: { text: "Subscribe Now", href: "#" },
featuresTitle: "What's Included:", features: [
"200 clips per month", "4K video quality", "Auto-captions in 25 languages", "Premium analytics suite", "Custom branding options", "Batch processing (10 videos)", "API access", "Dedicated account manager"
]
}