|
|
|
|
@@ -1,74 +1,22 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Open_Sans } 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 openSans = Open_Sans({
|
|
|
|
|
variable: "--font-open-sans",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Brainify - AI SaaS Platform for Creators",
|
|
|
|
|
description: "Create stunning AI-generated content with Brainify. 15+ AI tools including image generation, face swap, video creation, and more. 50% off first month. Free trial with 5 daily AI Sparks.",
|
|
|
|
|
keywords: "AI tools, image generator, face swap, video generation, SaaS platform, content creation, AI art",
|
|
|
|
|
metadataBase: new URL("https://brainify.ai"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://brainify.ai",
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Brainify - AI Content Creation Platform",
|
|
|
|
|
description: "Transform your creativity with 15+ AI-powered tools. Generate images, videos, enhance photos, and create professional content effortlessly.",
|
|
|
|
|
url: "https://brainify.ai",
|
|
|
|
|
siteName: "Brainify",
|
|
|
|
|
type: "website",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVswAIYlsTNcIZ3oIHvVtQVpeu/a-modern-ai-image-generation-interface-s-1772690553345-c5e0890c.png",
|
|
|
|
|
alt: "Brainify AI Platform",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "Brainify - AI Content Creation",
|
|
|
|
|
description: "Create AI-generated content with 15+ tools. Start free with 5 daily AI Sparks.",
|
|
|
|
|
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVswAIYlsTNcIZ3oIHvVtQVpeu/a-modern-ai-image-generation-interface-s-1772690553345-c5e0890c.png"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Brainify - AI Content Creation Platform", description: "Transform your creativity with AI-powered tools for content creation, image generation, video production, and more."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1436,7 +1384,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|