simple-links/src/app/layout.tsx
2023-07-01 20:43:53 +00: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>
);
}