You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
621 B
Plaintext
23 lines
621 B
Plaintext
---
|
|
import BaseLayout from './BaseLayout.astro'
|
|
---
|
|
|
|
<BaseLayout {...Astro.props}>
|
|
<header>
|
|
<div class="logo">
|
|
<img src="/images/logo-circuit-board.svg" alt="phc logo" />
|
|
</div>
|
|
<div class="links">
|
|
<a role="button" href="#">Utenti</a>
|
|
<a role="button" href="#">Notizie</a>
|
|
<a role="button" href="#">Progetti</a>
|
|
<a role="button" href="#">About</a>
|
|
<a class="primary" role="button" href="#">Accedi</a>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<slot />
|
|
</main>
|
|
<footer>© PHC 2023</footer>
|
|
</BaseLayout>
|