Merge version_1 into main #1
@@ -93,19 +93,19 @@ export default function DashboardPage() {
|
||||
{
|
||||
title: "Video Library",
|
||||
description: "Access all your created videos, organize by project, and download in multiple formats.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/abstract-illustration-of-video-generatio-1773319489414-803dc728.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/abstract-illustration-of-video-generatio-1773319489414-803dc728.png?_wi=2",
|
||||
imageAlt: "Video library management",
|
||||
},
|
||||
{
|
||||
title: "Project Management",
|
||||
description: "Organize your videos into projects, collaborate with team members, and track progress.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/illustration-showing-youtube-integration-1773319489517-fda1adb1.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/illustration-showing-youtube-integration-1773319489517-fda1adb1.png?_wi=2",
|
||||
imageAlt: "Project management tools",
|
||||
},
|
||||
{
|
||||
title: "Analytics & Insights",
|
||||
description: "Track video performance, engagement metrics, and get AI-powered optimization recommendations.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/representation-of-ai-powered-technology--1773319489607-1efd03ca.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/representation-of-ai-powered-technology--1773319489607-1efd03ca.png?_wi=2",
|
||||
imageAlt: "Analytics dashboard",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Poppins } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
@@ -20,6 +24,39 @@ const poppins = Poppins({
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "AI Video Studio - Transform Ideas Into Stunning Videos",
|
||||
description: "Create professional videos in seconds with AI-powered generation. Generate promo videos, YouTube content, and engaging reels for content creators and businesses.",
|
||||
keywords: ["AI video", "video generation", "content creation", "AI SaaS", "video editor", "YouTube optimization"],
|
||||
metadataBase: new URL("https://aivideostudio.com"),
|
||||
alternates: {
|
||||
canonical: "https://aivideostudio.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "AI Video Studio - Transform Ideas Into Stunning Videos",
|
||||
description: "Create professional videos in seconds with AI-powered generation",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/a-sleek-dark-themed-ai-chat-interface-di-1773319489149-6173b356.png",
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: "AI Video Studio",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "AI Video Studio",
|
||||
description: "Create professional videos in seconds with AI-powered generation",
|
||||
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/a-sleek-dark-themed-ai-chat-interface-di-1773319489149-6173b356.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,7 +65,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -98,19 +98,19 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Smart Video Generation",
|
||||
description: "Generate complete videos from text prompts using advanced AI algorithms.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/abstract-illustration-of-video-generatio-1773319489414-803dc728.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/abstract-illustration-of-video-generatio-1773319489414-803dc728.png?_wi=1",
|
||||
imageAlt: "Video generation technology",
|
||||
},
|
||||
{
|
||||
title: "YouTube Optimization",
|
||||
description: "Automatically optimize videos for YouTube with AI-powered recommendations.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/illustration-showing-youtube-integration-1773319489517-fda1adb1.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/illustration-showing-youtube-integration-1773319489517-fda1adb1.png?_wi=1",
|
||||
imageAlt: "YouTube optimization features",
|
||||
},
|
||||
{
|
||||
title: "AI-Powered Editing",
|
||||
description: "Intelligent editing suggestions and automated video enhancement.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/representation-of-ai-powered-technology--1773319489607-1efd03ca.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqSO6OmngJF22mpm5fF3Xm4sWG/representation-of-ai-powered-technology--1773319489607-1efd03ca.png?_wi=1",
|
||||
imageAlt: "AI-powered editing tools",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user