mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2026-07-31 15:49:04 +02:00
init
This commit is contained in:
11
app/layout.tsx
Normal file
11
app/layout.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import "../styles/globals.scss";
|
||||
import Nav from "./Nav";
|
||||
|
||||
export default function Layout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<body>
|
||||
<Nav />
|
||||
<main>{children}</main>
|
||||
</body>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user