From 650c5f56d4540187eabc98e6d9d746ededb1ada5 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 21:23:55 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..4d2e1f8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,32 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "ARMAX AI - Your Intelligent Study Companion", + description: "ARMAX AI is the ultimate student-focused AI assistant platform. Get instant help with essays, math problems, PDF analysis, and personalized study plans. Free starter plan available.", + keywords: "AI tutor, study helper, essay writer, math solver, PDF analyzer, student AI, academic assistant, homework help", + metadataBase: new URL("https://armax.ai"), + alternates: { + canonical: "https://armax.ai", + }, + openGraph: { + title: "ARMAX AI - Your Intelligent Study Companion", + description: "Transform your academic journey with ARMAX AI. AI-powered essays, math solving, study plans, and more. Join 10,000+ students.", + url: "https://armax.ai", + siteName: "ARMAX AI", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "ARMAX AI - Your Intelligent Study Companion", + description: "AI-powered academic assistance for students. Essays, math, PDFs, and study plans.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +58,9 @@ export default function RootLayout({ return ( - + {children}