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.
17 lines
420 B
Plaintext
17 lines
420 B
Plaintext
---
|
|
import BaseLayout from '../layouts/BaseLayout.astro'
|
|
|
|
import Header from '../components/Header.astro'
|
|
import Footer from '../components/Footer.astro'
|
|
---
|
|
|
|
<BaseLayout {...Astro.props}>
|
|
<Header />
|
|
<main class="text-content center">
|
|
<p>
|
|
Bla bla bla la storia del PHC con tutti i macchinisti che ci sono mai stati su una timeline carina
|
|
</p>
|
|
</main>
|
|
<Footer />
|
|
</BaseLayout>
|