LinkList/frontend/pages/_app.tsx

20 lines
478 B
TypeScript

import type { AppProps } from "next/app";
import React from "react";
import "styles/globals.css";
import Head from "next/head";
const MyApp: React.FC<AppProps> = ({ Component, pageProps }) => (
<>
<Head>
<title>@uwcsclub | LinkList</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Karla:wght@300;400;600;700&display=swap"
></link>
</Head>
<Component {...pageProps} />
</>
);
export default MyApp;