POSTERAPP_V1/app/layout.tsx

26 lines
581 B
TypeScript
Raw Permalink 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 { Inter } from "next/font/google";
import "./globals.css";
import { AuthProvider } from "../providers/AuthProvider";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Postacı Uygulaması",
description: "Postacılar için rota yönetim sistemi",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="tr">
<body className={inter.className}>
<AuthProvider>{children}</AuthProvider>
</body>
</html>
);
}