From c072471040d70fe66d1d7d8642267524c8c3509f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 21:17:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 59 +++++++++------------------------------------- 1 file changed, 11 insertions(+), 48 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 28bd63e..29eb51a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,22 @@ -import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; +import type { Metadata } from 'next'; +import { Outfit } from 'next/font/google'; +import '@/styles/globals.css'; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const outfit = Outfit({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "EduManage Pro - Academy Management SaaS Platform", - description: "Cloud-based multi-tenant academy management system with student management, attendance tracking, fee management, and comprehensive reporting. 7-day free trial available.", - keywords: "academy management, education SaaS, student management system, attendance tracking, fee management, educational software, school management platform", - metadataBase: new URL("https://edumanagepro.com"), - alternates: { - canonical: "https://edumanagepro.com", - }, - openGraph: { - title: "EduManage Pro - Unified Academy Management Platform", - description: "Streamline your academy operations with EduManage Pro. Manage students, teachers, courses, attendance, and fees. Multi-tenant, secure, and scalable.", - url: "https://edumanagepro.com", - siteName: "EduManage Pro", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARruazOM20f4gaxWwHuwsvTwDU/a-modern-professional-academy-management-1772569000672-8082289d.png", - alt: "EduManage Pro Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "EduManage Pro - Academy Management System", - description: "Cloud-based SaaS platform for managing educational institutions. Try free for 7 days.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARruazOM20f4gaxWwHuwsvTwDU/a-modern-professional-academy-management-1772569000672-8082289d.png"], - }, - robots: { - index: true, - follow: true, - }, + title: 'EduManage Pro - Academy Management Platform', + description: 'Cloud-based SaaS solution for educational institutions. Manage students, teachers, courses, attendance, fees, and reports securely.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children}