From ca58f1dca8c5bdb238ba772799e6f6ced3914eb9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 14:24:44 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 64 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 51 insertions(+), 13 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 51b7ec2..4fd5567 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Archivo } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Archivo } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"] + variable: "--font-archivo", + subsets: ["latin"] }); +export const metadata: Metadata = { + title: "SynapseAI: Advanced AI Platform", + description: "Our advanced AI platform empowers you to innovate, create, and scale faster than ever before. Experience the future of intelligent automation, creative generation, and data insights.", + keywords: ["AI", "artificial intelligence", "platform", "innovation", "data", "automation", "machine learning", "deep learning", "enterprise AI", "SynapseAI"], + metadataBase: new URL(process.env.NEXT_PUBLIC_SITE_URL || 'http://localhost:3000'), + openGraph: { + title: "SynapseAI: Advanced AI Platform", + description: "Our advanced AI platform empowers you to innovate, create, and scale faster than ever before. Experience the future of intelligent automation, creative generation, and data insights.", + url: new URL(process.env.NEXT_PUBLIC_SITE_URL || 'http://localhost:3000'), + siteName: "SynapseAI", + images: [ + { + url: "/og-image.jpg", // Placeholder, ideally a generated image + width: 1200, + height: 630, + alt: "SynapseAI Platform" + } + ], + locale: "en_US", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "SynapseAI: Advanced AI Platform", + description: "Our advanced AI platform empowers you to innovate, create, and scale faster than ever before. Experience the future of intelligent automation, creative generation, and data insights.", + creator: "@SynapseAI", + images: ["/twitter-image.jpg"] // Placeholder + }, + robots: { + index: true, + follow: true, + googleBot: { + index: true, + follow: true, + "max-video-preview": -1, + "max-image-preview": "large", + "max-snippet": -1, + }, + }, + alternates: { + canonical: '/', + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}