From 06cf41472acc80ec8b14c39132081c852cf92f6c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:57:50 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7daad69..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AI Vocabulary Helper - Learn English Words Instantly", description: "Discover definitions, examples, synonyms, and images for any English word. Build your vocabulary with AI-powered learning that's simple, friendly, and effective.", keywords: "vocabulary, English learning, dictionary, word definitions, synonyms, language learning, AI education", robots: { - index: true, - follow: true, - }, - openGraph: { - type: "website", siteName: "AI Vocabulary Helper", title: "AI Vocabulary Helper - Learn English Words Instantly", description: "Discover definitions, examples, synonyms, and images for any English word. Build your vocabulary with AI-powered learning.", images: [ - { - url: "http://img.b2bpic.net/free-photo/stack-books-black-wooden-table_93675-135417.jpg", alt: "AI Vocabulary Helper - English Learning"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AI Vocabulary Helper - Learn English Words Instantly", description: "Master English vocabulary with definitions, examples, and synonyms. Simple. Friendly. Effective.", images: ["http://img.b2bpic.net/free-photo/stack-books-black-wooden-table_93675-135417.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}