Update src/app/layout.tsx

This commit is contained in:
2026-03-21 21:23:55 +00:00
parent 42670cd7a2
commit 650c5f56d4

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +72,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}