From aba90402e53734452c74732d962b64fb0c58a921 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:49:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++++++--------------------------------- 1 file changed, 15 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ef45e75..3bfa20a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,28 @@ import type { Metadata } from "next"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geist_mono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Emergent - منصة إنشاء التطبيقات والألعاب بالذكاء الاصطناعي", - description: "أنشئ تطبيقات وألعاب مذهلة بدون كتابة أي كود باستخدام قوة الذكاء الاصطناعي. منصة Emergent توفر إبداعاً بلا حدود.", - keywords: "تطبيقات, ألعاب, الذكاء الاصطناعي, بدون كود, منصة إنشاء, تطوير التطبيقات", - openGraph: { - title: "Emergent - منصة الإبداع بلا حدود", - description: "أنشئ تطبيقات وألعاب باستخدام AI بدون كتابة أي كود", - url: "https://emergent.ai", - siteName: "Emergent", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASvOkm4ep5HxFE1npjaznATIuv/a-stunning-futuristic-ai-powered-dashboa-1772599346982-74b1af42.png", - alt: "Emergent AI Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Emergent - منصة الإبداع بلا حدود", - description: "أنشئ تطبيقات وألعاب باستخدام AI بدون كود", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASvOkm4ep5HxFE1npjaznATIuv/a-stunning-futuristic-ai-powered-dashboa-1772599346982-74b1af42.png", - ], - }, -}; + title: "Create Next app", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +