🚸 add margins to titles

This commit is contained in:
Julien Calixte
2023-05-27 17:50:21 +02:00
parent 5ad4db62d6
commit 70bc01d0c9
6 changed files with 26 additions and 17 deletions

View File

@@ -10,10 +10,7 @@
<h3>My books</h3>
<p>
I'm glad to share you <a href="/my-books">the books</a> I'm currently reading.
</p>
<p><a href="/my-books">The books</a> I'm currently reading.</p>
</section>
</template>

View File

@@ -1,14 +1,16 @@
<script setup lang="ts">
import { usePosts } from "@/hooks/usePosts.hook";
import { usePosts } from "@/hooks/usePosts.hook"
const posts = usePosts();
const posts = usePosts()
</script>
<template>
<div class="blog-posts">
<h2>Last posts</h2>
<h3 v-for="post in posts" :key="post.href">
- <a :href="post.href">{{ post.title }}</a>
</h3>
<ul>
<li v-for="post in posts" :key="post.href">
<a :href="post.href">{{ post.title }}</a>
</li>
</ul>
</div>
</template>

View File

@@ -2,7 +2,8 @@
<template>
<h1>
Hi! I'm <julien-calixte version="compact" />. A mobile & web developer.
Hi! I'm <julien-calixte version="compact" />. An Engineer Manager and web
developer.
</h1>
<section class="about-me">
<p>I am into building things with code.</p>