feat: migrate to the new system.

This commit is contained in:
Hexagonn
2024-10-20 19:44:03 +07:00
parent ff86f2afde
commit be11864c21
68 changed files with 1293 additions and 2752 deletions

18
old/pages/_app.tsx Normal file
View File

@@ -0,0 +1,18 @@
import type { AppProps } from "next/app";
import Head from "next/head";
export default function LanyardReadMe({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png" />
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#191d28" />
<meta name="theme-color" content="#191d28" />
</Head>
<Component {...pageProps} />
</>
);
}