diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6ec5405..ba324e9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,31 +1,1422 @@ import type { Metadata } from "next"; +import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./styles/variables.css"; -import "./styles/base.css"; +import { Figtree } from "next/font/google"; +import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const inter = Inter({ subsets: ["latin"] }); +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + +const figtree = Figtree({ + variable: "--font-figtree", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Smart Tuition Pro", description: "Manage Your Entire Coaching Institute Effortlessly"}; + title: "Smart Tuition Pro | Institute Management Platform", description: "Centralize student management, attendance, assessments & fees. Empower teachers, engage students, streamline operations with Smart Tuition Pro.", keywords: "tuition management, education platform, student management system, attendance tracking, online assessments, fee collection", metadataBase: new URL("https://smarttuitionpro.com"), + alternates: { + canonical: "https://smarttuitionpro.com"}, + openGraph: { + title: "Smart Tuition Pro | Manage Your Coaching Institute Effortlessly", description: "Complete platform for student management, attendance, online testing, and fee collection", url: "https://smarttuitionpro.com", siteName: "Smart Tuition Pro", type: "website", images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-modern-bright-dashboard-interface-for--1773131822223-ba9b7474.png", alt: "Smart Tuition Pro Dashboard"}, + ], + }, + twitter: { + card: "summary_large_image", title: "Smart Tuition Pro | Institute Management Platform", description: "Streamline your coaching center with our comprehensive management platform", images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-modern-bright-dashboard-interface-for--1773131822223-ba9b7474.png"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + {children} +