From 981cc5ff16c37cad340be3ade59d33a5fc0bebd6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:43:15 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1417 +------------------------------------------- 1 file changed, 8 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eb4207..e0a7667 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; -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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Klassyco — Smart School Management Software", description: "Klassyco is a powerful cloud-based school management platform that simplifies student management, attendance tracking, exams, fees, and communication for modern schools. Start your free trial today.", keywords: "school management software, school ERP, student management system, attendance tracking, exam management, school administration, education platform, SaaS for schools", metadataBase: new URL("https://klassyco.io"), - alternates: { - canonical: "https://klassyco.io"}, - openGraph: { - title: "Klassyco — Smart School Management Software", description: "Manage your entire school with one powerful platform. Student management, attendance, exams, fees, and parent communication all in one place.", url: "https://klassyco.io", siteName: "Klassyco", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ad0qeXHMkRM4FptNSZRbWfI5kq/a-modern-school-management-dashboard-int-1772908204958-2996d98c.png", alt: "Klassyco School Management Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Klassyco — Smart School Management Software", description: "Transform your school administration with Klassyco's comprehensive platform for student management, attendance, exams, and communication.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ad0qeXHMkRM4FptNSZRbWfI5kq/a-modern-school-management-dashboard-int-1772908204958-2996d98c.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Klassyco - Smart School Management Made Simple", description: "Klassyco helps schools manage students, teachers, classes, fees, exams, and communication in one powerful cloud platform."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -