Restaurant section
This commit is contained in:
@@ -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
BIN
public/baari.pdf
Normal file
Binary file not shown.
BIN
public/ravintola.pdf
Normal file
BIN
public/ravintola.pdf
Normal file
Binary file not shown.
BIN
public/restaurant.webp
Normal file
BIN
public/restaurant.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user