From 460c79f2d42afb9ee7a2f0864422ac856d9347af Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 05:10:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9212845..96c79fb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Raleway } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AI Programmer | Intelligent Solutions & Website Generation", description: "Expert AI programmer specializing in machine learning, intelligent automation, and AI-powered website generation. Transform your business with cutting-edge technology.", keywords: "AI programmer, machine learning, artificial intelligence, automation, website generation, AI development", metadataBase: new URL("https://ai-dev.com"), - alternates: { - canonical: "https://ai-dev.com" - }, - openGraph: { - title: "AI.Dev | Intelligent Solutions", description: "Transform your business with AI-powered solutions and intelligent automation.", url: "https://ai-dev.com", siteName: "AI.Dev", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrg03xYR4efFuYQWOw16FBLeG/abstract-ai-powered-digital-landscape-wi-1772597285903-667e3cdb.png", alt: "Abstract AI-powered digital landscape with flowing neural network particles and binary code streams." - } - ] - }, - twitter: { - card: "summary_large_image", title: "AI.Dev | Intelligent Solutions", description: "Expert AI programmer creating cutting-edge solutions", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrg03xYR4efFuYQWOw16FBLeG/abstract-ai-powered-digital-landscape-wi-1772597285903-667e3cdb.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "AI.Dev | Intelligent Solutions", description: "AI programmer crafting the future of web technology with cutting-edge machine learning and custom algorithms."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}