mirror of
https://github.com/DerTyp7/apartment-altenau-nextjs.git
synced 2025-10-28 20:32:13 +01:00
18 lines
382 B
JavaScript
18 lines
382 B
JavaScript
import "../styles/variables.scss";
|
|
import "../styles/globals.scss";
|
|
import "../styles/LegalAndPrivacy.scss";
|
|
import Nav from "../components/Nav";
|
|
import Footer from "../components/Footer";
|
|
|
|
export default function App({ Component, pageProps }) {
|
|
return (
|
|
<>
|
|
<Nav {...pageProps} />
|
|
<main>
|
|
<Component {...pageProps} />
|
|
</main>
|
|
<Footer {...pageProps} />
|
|
</>
|
|
);
|
|
}
|