Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-09 06:09:09 +00:00
2 changed files with 11 additions and 41 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "ViralBoost AI - AI Video Title Generator & Viral Content Analyzer", description: "Generate viral YouTube, Instagram & TikTok titles, descriptions & hashtags instantly. AI analyzes your video content and provides viral scores, keyword suggestions & trending hashtags.", keywords: "viral video titles, AI title generator, TikTok title maker, YouTube SEO, Instagram hashtags, viral content analyzer, trending hashtags, content optimization", openGraph: {
title: "ViralBoost AI - Generate Viral Content Instantly", description: "Transform your videos into viral sensations. AI analyzes content and generates optimized titles, descriptions & trending hashtags.", siteName: "ViralBoost AI", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhDMLnoipn6yRIlpfyQq1uTJhk/a-modern-ai-powered-video-analysis-dashb-1773035953048-fecc22c3.png", alt: "ViralBoost AI Dashboard"
}
]
},
twitter: {
card: "summary_large_image", title: "ViralBoost AI - AI-Powered Viral Content Generator", description: "Instantly generate viral titles, descriptions & trending hashtags for YouTube, Instagram & TikTok.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhDMLnoipn6yRIlpfyQq1uTJhk/a-modern-ai-powered-video-analysis-dashb-1773035953048-fecc22c3.png"]
},
robots: {
index: true,
follow: true
}
};
title: "ViralBoost AI - Transform Your Videos Into Viral Sensations", description: "AI-powered video analysis tool that generates viral titles, SEO descriptions, and trending hashtags to maximize your content's reach."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -86,25 +86,25 @@ export default function LandingPage() {
id: "viral-titles", label: "Viral", title: "5 Optimized Viral Titles", items: [
"AI analyzes video content, keywords, and trending topics", "Generates multiple title variations with CTR predictions", "One-click copy to clipboard for YouTube, Instagram & TikTok"
],
buttons: [{ text: "Learn More", href: "#" }]
buttons: [{ text: "See Viral Examples", href: "#" }]
},
{
id: "seo-descriptions", label: "SEO", title: "2 SEO-Optimized Descriptions", items: [
"Keyword-rich descriptions with timestamp links", "Platform-specific formatting (YouTube, Instagram, TikTok)", "Automatically includes calls-to-action and engagement hooks"
],
buttons: [{ text: "Learn More", href: "#" }]
buttons: [{ text: "Optimize Now", href: "#" }]
},
{
id: "trending-hashtags", label: "Trends", title: "20-30 Trending Hashtags", items: [
"AI detects trending topics related to your video", "Shows competition level and popularity scores", "Auto-updates daily based on real-time trend data"
],
buttons: [{ text: "Learn More", href: "#" }]
buttons: [{ text: "Discover Trends", href: "#" }]
},
{
id: "viral-score", label: "Score", title: "Viral Score & Analytics", items: [
"Get an instant 0-100% viral potential score", "View historical trend analysis and prediction data", "Detailed breakdown of engagement factors"
],
buttons: [{ text: "Learn More", href: "#" }]
buttons: [{ text: "Analyze Your Content", href: "#" }]
}
]}
/>
@@ -135,7 +135,7 @@ export default function LandingPage() {
id: "step-generate", label: "03", title: "Get Viral Content", items: [
"Receive 5 viral titles with engagement predictions", "2 SEO descriptions optimized for search visibility", "20-30 trending hashtags with competition metrics"
],
buttons: [{ text: "Copy & Share", href: "#" }]
buttons: [{ text: "Get Started Now", href: "#" }]
}
]}
/>