Merge version_2 into main #4
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Archivo } 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 archivo = Archivo({
|
||||
variable: "--font-archivo", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "AI Growth Studio - AI-Powered Social Media Content Creation", description: "Professional AI-generated social media posts, short videos, and marketing graphics. Grow your business with AI-powered content creation services.", keywords: "AI social media content, Instagram posts, Reels creation, TikTok videos, social media design, content creation agency, AI graphics", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "AI Growth Studio - Transform Your Social Media", description: "Create professional social media content with AI. Posts, videos, graphics, and more.", siteName: "AI Growth Studio", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Abmr0eOO9xrc5a4nikwk5Q03bz/a-professional-instagram-post-design-sho-1772869914594-1569ea2d.png", alt: "Professional social media content"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "AI Growth Studio", description: "AI-powered social media content creation", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Abmr0eOO9xrc5a4nikwk5Q03bz/a-professional-instagram-post-design-sho-1772869914594-1569ea2d.png"],
|
||||
},
|
||||
};
|
||||
title: "AI Growth Studio - AI-Powered Social Media Content", description: "Transform your social media with AI-generated posts and videos. Professional content creation for Instagram, TikTok, and more."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -235,7 +235,7 @@ export default function LandingPage() {
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email address"
|
||||
buttonText="Send Message"
|
||||
buttonText="Get Free Consultation"
|
||||
termsText="We respect your privacy. You can unsubscribe anytime. By subscribing, you agree to receive emails from AI Growth Studio."
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user