ni-link/app/layout.tsx

29 lines
858 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
);
}