mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 12:52:13 +01:00
refactor
This commit is contained in:
21
pages/_app.tsx
Normal file
21
pages/_app.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import "@/styles/globals.scss";
|
||||
import "@/styles/inputs.scss";
|
||||
import "@/styles/buttons.scss";
|
||||
import "@/styles/typography.scss";
|
||||
import type { AppProps } from "next/app";
|
||||
import AdminNav from "@/components/AdminNav";
|
||||
import Footer from "@/components/Footer";
|
||||
import Nav from "@/components/Nav";
|
||||
|
||||
export default function App({ Component, pageProps }: AppProps) {
|
||||
return (
|
||||
<>
|
||||
<header>
|
||||
<Nav categories={[]} />
|
||||
<AdminNav />
|
||||
</header>
|
||||
<Component {...pageProps} />
|
||||
<Footer />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user