diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 80df046..ee58bef 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,48 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Roboto } 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"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const roboto = Roboto({
- variable: "--font-roboto", subsets: ["latin"],
- weight: ["100", "300", "400", "500", "700", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "RoboLab Manager - Mobile Robotics Lab Management", description: "Professional mobile app for robotics lab managers to monitor robot status, assign tasks, track maintenance, and manage error logs in real-time.", keywords: "robotics, lab management, mobile app, robot monitoring, task assignment, maintenance tracking", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "RoboLab Manager - Lab Management Made Easy", description: "Real-time robotics laboratory management on your mobile device", type: "website", siteName: "RoboLab Manager"},
-};
+ title: "RoboLab Manager", description: "Professional robotics lab management system"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index aa8c8fb..0d6fbbc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -57,6 +57,8 @@ const socialLinks = [
];
export default function LandingPage() {
+ const criticalCount = criticalAlerts.filter(alert => alert.category === "Error" || alert.category === "Warning").length;
+
return (
);
-}
\ No newline at end of file
+}