7 Commits

Author SHA1 Message Date
13b81676f2 Switch to version 2: modified src/app/page.tsx 2026-03-07 12:38:24 +00:00
08d9c931bf Switch to version 2: modified src/app/layout.tsx 2026-03-07 12:38:24 +00:00
763403b6c0 Switch to version 1: modified src/app/page.tsx 2026-03-07 12:38:04 +00:00
c1e721b5c3 Switch to version 1: modified src/app/layout.tsx 2026-03-07 12:38:03 +00:00
f341f58d3b Merge version_2 into main
Merge version_2 into main
2026-03-07 12:29:10 +00:00
57e8ca2ae4 Update src/app/page.tsx 2026-03-07 12:29:06 +00:00
6b6ccd7c92 Update src/app/layout.tsx 2026-03-07 12:29:05 +00:00
2 changed files with 5 additions and 16 deletions

View File

@@ -7,26 +7,20 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const halant = Halant({ const halant = Halant({
variable: "--font-halant", variable: "--font-halant", subsets: ["latin"],
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"], weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const inter = Inter({
variable: "--font-inter", variable: "--font-inter", subsets: ["latin"],
subsets: ["latin"],
}); });
const archivo = Archivo({ const archivo = Archivo({
variable: "--font-archivo", variable: "--font-archivo", subsets: ["latin"],
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "ELECTRO MANAGER - Admin Dashboard", 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: {
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, index: false,
follow: false, follow: false,
}, },
@@ -1416,4 +1410,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,5 +0,0 @@
import { redirect } from 'next/navigation';
export default function Home() {
redirect('/components');
}