diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 538c3a9..e3cd270 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}