Files
advcal/pages/index.jsx
Thomas Ruoff 5ce524cb84 2023
2023-11-30 15:57:52 +01:00

24 lines
539 B
JavaScript

import Head from "next/head";
import AppProvider from "../context/appProvider";
import Header from "../components/header";
import Calendar from "../components/calendar";
import ShowDoorDialog from "../components/showdoordialog";
export default function Home() {
return (
<div>
<Head>
<title>Adventskalender 2023 Edition</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<AppProvider>
<Header />
<Calendar />
<ShowDoorDialog />
</AppProvider>
</div>
);
}