From 5c1954c4eb9c1d6ab50f149fb06346af0392d8a0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 16:17:39 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 63 +++++++--------------------------------------- 1 file changed, 9 insertions(+), 54 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c987819..bd27a8d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,68 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; +import "./styles/base.css"; +import "./styles/variables.css"; 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"], -}); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Smart Library Management System | RFID-Based Library Automation", - description: "Automated RFID library management system with real-time book tracking, student registration, fine calculation, and comprehensive admin dashboards for modern libraries.", - keywords: "library management, RFID, automation, book tracking, fine calculation, student registration", - openGraph: { - title: "Smart Library Management System", - description: "Transform your library with automated RFID-based book management and real-time tracking.", - type: "website", - siteName: "Smart Library Management System", - images: [ - { - url: "http://img.b2bpic.net/free-photo/man-library-with-tablet_1134-234.jpg", - alt: "Smart Library Management System", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Smart Library Management System", - description: "RFID-powered library automation platform", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Smart Library Management System", description: "Automated RFID-based book tracking with real-time inventory management, student registration, and fine calculation for modern libraries."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}