Switch to version 2: modified src/app/layout.tsx

This commit is contained in:
2026-03-07 12:38:24 +00:00
parent 763403b6c0
commit 08d9c931bf

View File

@@ -7,26 +7,20 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
variable: "--font-archivo", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "ELECTRO MANAGER - Admin Dashboard",
description: "Premium admin dashboard for electronics e-commerce. Manage products, orders, customers, and analytics in one clean interface.",
keywords: "admin dashboard, electronics store, inventory management, order tracking",
robots: {
title: "ELECTRO MANAGER - Admin Dashboard", description: "Premium admin dashboard for electronics e-commerce. Manage products, orders, customers, and analytics in one clean interface.", keywords: "admin dashboard, electronics store, inventory management, order tracking", robots: {
index: false,
follow: false,
},
@@ -1416,4 +1410,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}