simple-links/src/app/layout.tsx

22 lines
419 B
TypeScript
Raw Normal View History

2023-07-01 20:43:53 +00:00
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
2023-07-01 20:47:05 +00:00
title: "fascinated.cc",
description: "I'm a 20-year-old software engineer from the UK",
2023-07-01 20:43:53 +00:00
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}