Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8036809038 | |||
| 3875363832 | |||
| c978ad1984 | |||
| e26df36da5 | |||
| be61c34a90 | |||
| e8567a36ab | |||
| f78d610f7f |
@@ -1,50 +1,22 @@
|
||||
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"],
|
||||
});
|
||||
import type { Metadata } from 'next';
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
import './globals.css';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "VideoAI - AI Video Generator for Content Creators", description: "Create professional AI videos from text in seconds. No editing skills needed. Perfect for social media, marketing, and business content.", keywords: "AI video generator, text to video, video creation, content creation, AI tools", metadataBase: new URL("https://videoai.com"),
|
||||
alternates: {
|
||||
canonical: "https://videoai.com"},
|
||||
openGraph: {
|
||||
title: "VideoAI - Generate Videos from Text with AI", description: "Create stunning professional videos from text in seconds. AI-powered video generation for everyone.", url: "https://videoai.com", siteName: "VideoAI", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AX8SFHdoBIfxOeckuVuSbkFw3z/a-sleek-modern-ai-video-generation-inter-1772727622793-55fb29c1.png", alt: "VideoAI Dashboard"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "VideoAI - Generate Videos from Text with AI", description: "Create professional videos from text in seconds with AI technology.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AX8SFHdoBIfxOeckuVuSbkFw3z/a-sleek-modern-ai-video-generation-inter-1772727622793-55fb29c1.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
title: 'VideoAI - Create AI Videos from Text',
|
||||
description: 'Transform your ideas into stunning videos in seconds with AI-powered video generation. No editing experience needed.',
|
||||
};
|
||||
|
||||
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>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -4,10 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
@@ -48,9 +48,9 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Generator", id: "generator" },
|
||||
{ name: "Partners", id: "social-proof" },
|
||||
{ name: "Pricing", id: "products" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
]}
|
||||
brandName="VideoAI"
|
||||
bottomLeftText="AI-Powered"
|
||||
@@ -189,6 +189,22 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
names={[
|
||||
"TechCorp", "CreativeStudio", "MediaFlow", "ContentLabs", "VideoSync", "Digital Pro", "StudioAI", "FrameWorks"]}
|
||||
title="Trusted by Industry Leaders"
|
||||
description="Join thousands of companies and creators using VideoAI to produce professional content"
|
||||
tag="Partners"
|
||||
tagIcon={Sparkles}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
speed={40}
|
||||
showCard={true}
|
||||
ariaLabel="Social proof section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardFour
|
||||
products={[
|
||||
|
||||
Reference in New Issue
Block a user