29 lines
858 B
TypeScript
29 lines
858 B
TypeScript
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 (
|
||
<html lang="en">
|
||
<body className={maven.className}>
|
||
|
||
{children}
|
||
|
||
</body>
|
||
</html>
|
||
);
|
||
}
|