initial commit

This commit is contained in:
PrinOrange
2023-12-25 17:21:39 +08:00
commit 0bd1089d74
94 changed files with 18648 additions and 0 deletions

16
pages/_app.tsx Normal file
View File

@@ -0,0 +1,16 @@
import "@/styles/globals.css";
import { Analytics } from "@vercel/analytics/react";
import { SpeedInsights } from "@vercel/speed-insights/next";
import "katex/dist/katex.min.css";
import { ThemeProvider } from "next-themes";
import type { AppProps } from "next/app";
export default function App({ Component, pageProps }: AppProps) {
return (
<ThemeProvider attribute="class" enableColorScheme enableSystem={false}>
<Analytics />
<SpeedInsights />
<Component {...pageProps} />
</ThemeProvider>
);
}