🚸 add margins to titles
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user