From 2f092dc5157dd311f7e45f2f944ccebbb18186ae Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:41:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1421 +------------------------------------------- 1 file changed, 20 insertions(+), 1401 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bc0072..0524f9f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,36 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "PhysicBrain - AI-Powered Physics Platform", description: "Ask any physics question, get instant AI answers with real-time simulations. Perfect for students, educators, and researchers. 99.8% accuracy.", keywords: "physics, AI, simulation, education, learning, homework help, tutor, science", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "PhysicBrain - Physics Questions Answered Instantly", description: "AI-powered physics platform with real-time simulations. Ask anything about motion, forces, waves, energy.", type: "website", siteName: "PhysicBrain", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Af9q3lIMM5bxnhzz8TBqn4oJ9i/a-stunning-physics-simulation-interface--1772973089410-96100f15.png", alt: "PhysicBrain Physics Simulation Interface"}, - ], - }, - twitter: { - card: "summary_large_image", title: "PhysicBrain - Physics Questions Answered Instantly", description: "AI-powered physics platform with real-time simulations for students and researchers.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Af9q3lIMM5bxnhzz8TBqn4oJ9i/a-stunning-physics-simulation-interface--1772973089410-96100f15.png"], - }, -}; + title: "PhysicBrain - AI-Powered Physics Learning", description: "Ask PhysicBrain anything about physics. Get intelligent explanations paired with dynamic simulations."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + {children} - +