import type { Metadata } from "next"; import { Maven_Pro } from "next/font/google"; import { LampDemo } from "@/components/ui/lamp" import "./globals.css"; const maven = Maven_Pro({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Netinternet - Kotasız, Taahhütsüz Fiber İnternet ve Sunucu Hizmetleri", description: "Hosting, alan adı (domain) , kiralık sunucu, vds sunucu, yönetilen sunucu, sunucu barındırma, kabin kiralama ihtiyaçlarınız için size özel çözümler sunan hızlı ve kaliteli hizmet sunan,7/24 Müşterilerine profesyonel destek ve hizmet vermekteyiz.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }