From 1553866529e21d17502b1833ac40aa8abc759b4d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 07:22:13 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8b26674..310d519 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "AI Assistant - Advanced Coding, Image Analysis & Conversation", description: "State-of-the-art AI assistant platform with intelligent coding capabilities, precise image analysis, and sophisticated conversation. Seamlessly integrate advanced AI into your workflow.", keywords: "AI assistant, artificial intelligence, coding assistant, image analysis, machine learning, code completion, AI platform", metadataBase: new URL("https://aiassistant.com"), - alternates: { - canonical: "https://aiassistant.com"}, - openGraph: { - title: "AI Assistant - Advanced AI Technology Platform", description: "Experience state-of-the-art AI with intelligent coding, image analysis, and conversation capabilities.", url: "https://aiassistant.com", siteName: "AI Assistant", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/a-cutting-edge-ai-assistant-interface-sh-1772867776024-bb3f9c72.png", alt: "AI Assistant Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AI Assistant - Advanced AI Technology", description: "Intelligent coding, image analysis, and conversation AI in one platform.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/a-cutting-edge-ai-assistant-interface-sh-1772867776024-bb3f9c72.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "AI Assistant Platform", description: "Advanced AI assistant with coding, image analysis, and intelligent conversation capabilities"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +