|
|
|
|
@@ -1,52 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Public_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 publicSans = Public_Sans({
|
|
|
|
|
variable: "--font-public-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Nano Banana 2 - Advanced AI Neural Network Platform", description: "Next-generation artificial intelligence platform with sub-millisecond processing, 99.9% uptime, and enterprise-grade reliability. Start your free trial today.", keywords: "AI, neural network, machine learning, artificial intelligence, API, enterprise software, deep learning, AI platform", metadataBase: new URL("https://nanobanana2.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://nanobanana2.com"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Nano Banana 2 - Advanced AI Neural Network", description: "Revolutionary AI platform for enterprise-scale neural network processing", url: "https://nanobanana2.com", siteName: "Nano Banana 2", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWQ0RFxBmodLUyaCcXN3ZGMymV/a-sleek-and-modern-ai-neural-network-das-1772705716237-d1182632.png", alt: "Nano Banana 2 AI Dashboard"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Nano Banana 2 - Advanced AI Platform", description: "Next-generation neural network processing platform", images: [
|
|
|
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWQ0RFxBmodLUyaCcXN3ZGMymV/a-sleek-and-modern-ai-neural-network-das-1772705716237-d1182632.png"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Nano Banana 2 - Advanced Neural Intelligence at Scale", description: "Nano Banana 2 delivers cutting-edge artificial intelligence processing with unprecedented accuracy and speed. Transform your data into actionable insights with our next-generation neural network architecture."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${publicSans.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>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|