mirror of
https://github.com/aaronleetw/savage-tracking.git
synced 2024-11-14 19:11:39 -08:00
17 lines
507 B
TypeScript
17 lines
507 B
TypeScript
import { type AppType } from "next/app";
|
|
|
|
import { Noto_Sans } from "next/font/google"
|
|
import localFont from 'next/font/local'
|
|
|
|
import { api } from "~/utils/api";
|
|
|
|
import "~/styles/globals.css";
|
|
|
|
const noto = Noto_Sans({ subsets: ["latin"] })
|
|
const kai = localFont({ src: "./kaiu.ttf", variable: "--font-kai"})
|
|
|
|
const MyApp: AppType = ({ Component, pageProps }) => {
|
|
return <main className={`${kai.variable} ${noto.className}`}><Component {...pageProps} /></main>;
|
|
};
|
|
|
|
export default api.withTRPC(MyApp);
|