1
1
This repository has been archived on 2023-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
nextjs-13-template-with-tai.../src/app/layout.tsx
2023-07-01 20:49:24 +01:00

23 lines
457 B
TypeScript

import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Example Site",
description:
"Template by https://git.fascinated.cc/Fascinated/nextjs-13-template-with-tailwindcss",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}