Restaurant section

This commit is contained in:
2022-11-05 19:18:33 +02:00
parent 6547f8ad8b
commit fb6144c606
5 changed files with 43 additions and 0 deletions

View File

@@ -83,6 +83,28 @@ export default function Index() {
</section> </section>
<span className={styles.separator} /> <span className={styles.separator} />
<section className={styles.sectionContainer}>
<h1 className={styles.title}>Tervetuloa ravintolaan!</h1>
<Image
src='/restaurant.webp'
layout='responsive'
alt='restaurant'
width={300}
height={300}
/>
<h1 className={styles.title}>Alla kesäkauden tarjoilut</h1>
<div className={styles.menuContainer}>
<a href='/ravintola.pdf' className={styles.menuLink}>
<h1 className={styles.title}>Ruoat</h1>
</a>
<a href='/baari.pdf' className={styles.menuLink}>
<h1 className={styles.title}>Juomat</h1>
</a>
</div>
</section>
<span className={styles.separator} />
</div> </div>
</div> </div>
); );

BIN
public/baari.pdf Normal file

Binary file not shown.

BIN
public/ravintola.pdf Normal file

Binary file not shown.

BIN
public/restaurant.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -98,3 +98,24 @@
.link:hover { .link:hover {
color: #3a3a3a; color: #3a3a3a;
} }
.menuContainer {
display: flex;
justify-content: space-evenly;
width: 100%;
height: 3rem;
}
.menuLink {
text-decoration: none;
border-bottom: 3px solid;
color: #686868;
}
.menuLink:hover {
color: #a3a2a2 !important;
h1 {
color: #a3a2a2 !important;
}
}