Contacts section

This commit is contained in:
2022-11-02 17:31:41 +02:00
parent 50debea965
commit e265f25d2c
6 changed files with 80 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
import { Contact } from '../components/Contact';
import { Header } from '../components/Header';
import { OpenHours } from '../components/OpenHours';
import styles from '../styles/Home.module.scss';
@@ -8,6 +9,7 @@ export default function Home() {
<div className={styles.innerContainer}>
<Header />
<OpenHours />
<Contact />
</div>
</div>
);