summaryrefslogtreecommitdiff
path: root/app/layout.tsx
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-05-08 21:31:00 +0200
committerYuval Adam <_@yuv.al>2025-05-08 22:27:03 +0200
commitc8d6dc54e2ee44daa00b11c6300f4f0d6ef32186 (patch)
tree0073da7bc68f5308610ed7d6d7bdc455ad4c6cf7 /app/layout.tsx
parent7450fe585f1253bf30b9ccb7254019aafc5db088 (diff)
Initial migration to AstroJS
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>
- );
-}