|
|
|
|
@@ -1,52 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Mulish } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const mulish = Mulish({
|
|
|
|
|
variable: "--font-mulish", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "BuildAI - Create AI-Powered Apps Without Coding", description: "Build intelligent applications with AI in minutes. No coding required. Join thousands of developers creating next-generation apps with our no-code platform.", keywords: "AI app builder, no-code platform, artificial intelligence, app development, automation", metadataBase: new URL("https://buildai.example.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://buildai.example.com"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "BuildAI - Create AI-Powered Apps Without Coding", description: "Build intelligent applications with AI in minutes. No coding required.", url: "https://buildai.example.com", siteName: "BuildAI", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUbwuQQHkM0UPR7XlYS2yk8l2u/a-sleek-modern-ai-application-builder-da-1772650413875-c8cfb1f5.png", alt: "BuildAI Platform Dashboard"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "BuildAI - Create AI-Powered Apps", description: "Build intelligent applications with AI in minutes", images: [
|
|
|
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUbwuQQHkM0UPR7XlYS2yk8l2u/a-sleek-modern-ai-application-builder-da-1772650413875-c8cfb1f5.png"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "BuildAI - AI-Powered No-Code Application Builder", description: "Create intelligent applications with AI. Build powerful, AI-driven applications in minutes. No coding required."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${mulish.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1414,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|