mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-22 16:00:39 +01:00
22 lines
363 B
Vue
Executable File
22 lines
363 B
Vue
Executable File
<template>
|
|
<main class="flex flex-col items-center mb-8 px-4 xl:px-32">
|
|
<Banner />
|
|
<About />
|
|
<PostsHome />
|
|
<ProjectsHome />
|
|
<AdHome />
|
|
</main>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
|
|
export default Vue.extend({
|
|
head() {
|
|
return {
|
|
title: 'Arthur Danjou - FullStack Web & Software Developer'
|
|
}
|
|
}
|
|
})
|
|
</script>
|