summaryrefslogtreecommitdiff
path: root/app/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/layout.tsx')
-rw-r--r--app/layout.tsx36
1 files changed, 0 insertions, 36 deletions
diff --git a/app/layout.tsx b/app/layout.tsx
deleted file mode 100644
index 763e026..0000000
--- a/app/layout.tsx
+++ /dev/null
@@ -1,36 +0,0 @@
-import type { Metadata } from "next";
-import { GoogleAnalytics } from '@next/third-parties/google'
-
-import localFont from "next/font/local";
-import "./globals.css";
-
-const geistSans = localFont({
- src: "./fonts/GeistVF.woff",
- variable: "--font-geist-sans",
- weight: "100 900",
-});
-const geistMono = localFont({
- src: "./fonts/GeistMonoVF.woff",
- variable: "--font-geist-mono",
- weight: "100 900",
-});
-
-export const metadata: Metadata = {
- title: "Interactive visual CIDR and IP range calculator",
- description: "Interactive tool for IP and CIDR calculations. Visualize subnet analysis and IP ranges. Educational resource for network planning and IT learning.",
-};
-
-export default function RootLayout({
- children,
-}: Readonly<{
- children: React.ReactNode;
-}>) {
- return (
- <html lang="en">
- <body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
- {children}
- </body>
- <GoogleAnalytics gaId="G-31LHNP2G97" />
- </html>
- );
-}