From c5d0bd37d7362dd3fb217b6134b155facaf0a909 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 10:58:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1412 +------------------------------------------- 1 file changed, 6 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3ddd47f..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "EduVerse AI - AI-Powered Learning Platform for Exams", description: "Learn with AI-powered tutoring, mock tests, and personalized study plans. Join 500K+ students excelling in JEE, NEET, UPSC and competitive exams.", keywords: "AI tutoring, mock tests, study platform, JEE preparation, NEET preparation, UPSC, competitive exams, online learning", metadataBase: new URL("https://eduverse-ai.com"), - alternates: { - canonical: "https://eduverse-ai.com"}, - openGraph: { - title: "EduVerse AI - Transform Your Learning Journey", description: "Access 2M+ learning resources, 10K+ mock tests, and 1:1 AI tutoring. Start learning today with EduVerse AI.", url: "https://eduverse-ai.com", siteName: "EduVerse AI", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ahm5WqJSwOGNbX3iFohsWDw7aU/a-friendly-female-ai-tutor-avatar-sittin-1773053074570-895b30f9.png", alt: "EduVerse AI Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "EduVerse AI - Learn Anything, Anytime with AI", description: "Join the future of education with AI-powered tutoring and comprehensive study tools.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ahm5WqJSwOGNbX3iFohsWDw7aU/a-friendly-female-ai-tutor-avatar-sittin-1773053074570-895b30f9.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -