Triston Armstrong
fd51f273f4
- removes tailwind (was cool but dont need it) - reworks a lot of the html - utilize a no css... library? css file? idk - add a few details - rework the navigation on the built notes pages - write a bunch of tailwind like css classes - ... maybe some more, too lazy
14 lines
327 B
TypeScript
14 lines
327 B
TypeScript
import "../styles/global.css";
|
|
import "../styles/prism.css";
|
|
import type { AppProps } from "next/app";
|
|
import type { HomeProps } from "./notes";
|
|
import type React from "react";
|
|
|
|
|
|
|
|
export default function App({ Component, pageProps }: AppProps<HomeProps>): React.JSX.Element {
|
|
return (
|
|
<Component {...pageProps} />
|
|
);
|
|
}
|