diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 4fbe67d..2d041ef 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -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", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..8c7a7e5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}