|
1 | 1 | --- |
2 | 2 | import Layout from "../layouts/default.astro"; |
3 | | -import Card from "../components/Card.astro"; |
4 | 3 | import { Icon } from "astro-icon/components"; |
| 4 | +import CardSection from "../components/CardSection.astro"; |
| 5 | +import Card from "../components/Card.astro"; |
5 | 6 | --- |
6 | 7 |
|
7 | | -<Layout title="Projets"> |
| 8 | +<Layout title="Blog"> |
8 | 9 | <div class="py-8 md:px-32"> |
9 | 10 | <div class="bg-[url('/banners/dark.png')] h-64 bg-cover bg-center rounded-lg border-2 border-neutral-content p-4" /> |
10 | | - <div class="my-12 text-center"> |
11 | | - <h1 class="text-5xl md:text-6xl font-bold">Archives</h1> |
12 | | - <p class="text-lg text-base-content/70 mt-2">Vous trouverez ici des versions archivés des différent sites webs que j'ai pu créer au fil des années.</p> |
13 | 11 | </div> |
| 12 | + <div class="mt-8 text-center"> |
| 13 | + <h1 class="text-4xl font-bold">Funasitien - Archives</h1> |
| 14 | + <p class="text-lg text-base-content/70 mt-2">Bienvenue sur mon site personnel !</p> |
| 15 | + </div> |
| 16 | + </div> |
14 | 17 |
|
| 18 | + <div class="p-8"> |
| 19 | + <CardSection> |
| 20 | + <Card title="Premier Portfolio" date="~2021"/> |
| 21 | + </CardSection> |
15 | 22 |
|
16 | | - <div class="mt-8 py-8"> |
17 | | - <h1 class="text-4xl md:text-5xl font-bold">Portfolios</h1> |
18 | | - |
19 | | - <div class="grid grid-cols-1 md:grid-cols-3 my-8"> |
20 | | - <Card title="Premier Portfolio" date="~2021" link="https://funa.dev/funasitien-website/" /> |
21 | | - </div> |
22 | | - |
23 | | - <div class="divider magic text-base-content/20 py-4"> |
24 | | - When web addiction meets design obsession |
25 | | - </div> |
26 | | - |
27 | | - <h1 class="text-4xl md:text-5xl font-bold mt-6 md:mt-12">DEMOCRAFT.FR</h1> |
28 | | - |
29 | | - <div class="grid grid-cols-1 md:grid-cols-3 my-8"> |
30 | | - <Card title="Azuriom Glass" icon="simple-icons:laravel" date="2024" /> |
31 | | - </div> |
32 | | - |
33 | | - </div> |
| 23 | + <CardSection> |
| 24 | + <Card title="Premier Portfolio" date="~2021" /> |
| 25 | + </CardSection> |
34 | 26 | </div> |
35 | 27 | </Layout> |
0 commit comments