summaryrefslogtreecommitdiff
path: root/app/layout.tsx
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-09-21 13:15:44 +0200
committerYuval Adam <_@yuv.al>2024-09-21 15:13:25 +0200
commit65e7041a3c88a5b2d1ae76e7023807537775cb1b (patch)
treec21fe6cc3f137e2f0c13c0c184f9f59581a6639a /app/layout.tsx
parent6ed566ac4f30e1aa8b7a817c22912c50ee136f86 (diff)
Initial NextJS project creation with basic structure
Diffstat (limited to 'app/layout.tsx')
-rw-r--r--app/layout.tsx35
1 files changed, 35 insertions, 0 deletions
diff --git a/app/layout.tsx b/app/layout.tsx
new file mode 100644
index 0000000..b41b50f
--- /dev/null
+++ b/app/layout.tsx
@@ -0,0 +1,35 @@
+import type { Metadata } from "next";
+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 IP address and CIDR range calculator and visualizer - cidr.xyz",
+ description: "Explore our interactive tool for calculating and visualizing IP addresses and CIDR ranges. Perfect for network administrators and IT professionals, cidr.xyz offers easy-to-use features for subnet analysis, IP range calculations, and network planning.",
+};
+
+export default function RootLayout({
+ children,
+}: Readonly<{
+ children: React.ReactNode;
+}>) {
+ return (
+ <html lang="en">
+ <body
+ className={`${geistSans.variable} ${geistMono.variable} antialiased`}
+ >
+ {children}
+ </body>
+ </html>
+ );
+}