add design

This commit is contained in:
Julien Calixte
2022-03-10 22:57:10 +01:00
parent 45a575aa73
commit 4f127d9465
10 changed files with 125 additions and 53 deletions

View File

@@ -1,23 +1,16 @@
<script setup lang="ts">
import { usePosts } from "@/hooks/usePosts.hook";
const posts = usePosts();
</script>
<script setup lang="ts"></script>
<template>
<h1>Hi! I'm <julien-calixte />. A mobile & web developer.</h1>
<p>
I am into building things with code. I love creating offline first
Progressive Web Apps. I've been doing programmation for 5 years and lead
dev/technical architecture for 1 year now.
</p>
<section class="welcome">
<about-me />
<section>
<h2>My blog posts</h2>
<ul>
<li v-for="post in posts" :key="post.href">
<a :href="post.href">{{ post.title }}</a>
</li>
</ul>
<blog-posts />
</section>
</template>
<style scoped lang="scss">
.welcome {
max-width: 800px;
margin: auto;
}
</style>