This commit is contained in:
2023-03-31 12:29:53 +11:00
parent 7c156a00bd
commit 3905520afe
14 changed files with 3901 additions and 124 deletions
View File
+6
View File
@@ -0,0 +1,6 @@
import "./globals.scss";
import type { AppProps } from "next/app";
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
+13
View File
@@ -0,0 +1,13 @@
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
View File
+9
View File
@@ -0,0 +1,9 @@
import styles from "./Clock.module.scss";
export default function Clock() {
return (
<>
<p id="unique_id">Hello, World!</p>
</>
);
}