3 Commits

Author SHA1 Message Date
a0762d82b5 Update src/app/page.tsx 2026-03-05 10:19:03 +00:00
d66aed4403 Update src/app/layout.tsx 2026-03-05 10:19:02 +00:00
d681ac9d5a Merge version_1 into main
Merge version_1 into main
2026-03-05 10:17:16 +00:00
2 changed files with 7 additions and 40 deletions

View File

@@ -1,52 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { 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"), 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."};
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,
},
};
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={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1414,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -63,7 +63,7 @@ export default function LandingPage() {
tagIcon={Zap} tagIcon={Zap}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Start Free Trial", href: "#contact" }, { text: "Get Started Free", href: "#contact" },
{ text: "View Documentation", href: "https://docs.example.com" }, { text: "View Documentation", href: "https://docs.example.com" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"