5 Commits

Author SHA1 Message Date
a0eee0d299 Update src/app/page.tsx 2026-03-07 07:57:52 +00:00
c723bced0d Update src/app/layout.tsx 2026-03-07 07:57:51 +00:00
c4de3c5693 Merge version_1 into main
Merge version_1 into main
2026-03-07 07:54:50 +00:00
8ca6eaf3b9 Merge version_1 into main
Merge version_1 into main
2026-03-07 07:53:55 +00:00
3dd0501022 Merge version_1 into main
Merge version_1 into main
2026-03-07 07:52:42 +00:00
2 changed files with 7 additions and 43 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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: { 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."};
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"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -235,7 +235,7 @@ export default function LandingPage() {
background={{ variant: "rotated-rays-animated" }} background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={false} useInvertedBackground={false}
inputPlaceholder="Enter your email address" 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." termsText="We respect your privacy. You can unsubscribe anytime. By subscribing, you agree to receive emails from AI Growth Studio."
/> />
</div> </div>