Added inter font

This commit is contained in:
Alexis
2024-08-06 17:41:53 +02:00
parent 76ae8b1f2d
commit a5d8b0f362
5 changed files with 26 additions and 19 deletions

View File

@@ -30,13 +30,7 @@ if (title) {
<title>{ renderedTitle }</title>
</head>
<body class="bg-stone-50">
<div class="container transition-all">
<div class="h-screen py-12 px-24 shadow-sm bg-white">
<div class="mt-32">
<slot />
</div>
</div>
</div>
<body class="bg-slate-950 text-white">
<slot />
</body>
</html>

View File

@@ -1,11 +1,12 @@
---
import Heading from '../components/Heading.astro';
import Layout from '../layouts/Layout.astro';
---
<Layout>
<main>
<h1 class="text-4xl font-bold">
<Heading tag="h1">
Titre
</h1>
</Heading>
</main>
</Layout>