mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-14 20:19:35 +01:00
Remove PageTitle + Fix page description
This commit is contained in:
@@ -16,16 +16,6 @@ const translations = {
|
||||
close: 'Fermer le menu'
|
||||
},
|
||||
|
||||
part: {
|
||||
about: 'A propos',
|
||||
contact: 'Me contacter',
|
||||
projects: 'Mes projets',
|
||||
blog: 'Mon blog',
|
||||
env: 'Mon environnement',
|
||||
newsletter: 'Ma newsletter',
|
||||
services: 'Mes services'
|
||||
},
|
||||
|
||||
services: {
|
||||
description: 'Je fourni tout ce dont vous avez besoin pour créer votre site internet parfait',
|
||||
1: {
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<main class="flex flex-col items-center mb-8 px-4 xl:px-64">
|
||||
<PageTitle title="part.about"/>
|
||||
<PresentationAbout />
|
||||
<SkillsAbout />
|
||||
<InterestsAbout />
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<template>
|
||||
<main v-if="posts" class="blog flex flex-col items-center w-full px-4 xl:px-16">
|
||||
<PageTitle title="part.blog" />
|
||||
<p class="text-gray-700 dark:text-gray-400 text-xl mt-4 mb-8">
|
||||
<p class="text-gray-700 dark:text-gray-400 text-xl mt-4 mb-8 text-justify">
|
||||
{{ $t('blog.description') }}
|
||||
</p>
|
||||
<h1 v-if="posts.length === 0" class="text-xl font-bold text-center my-8 w-full">{{ $t('blog.no_posts') }}</h1>
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
<template>
|
||||
<main class="contact flex flex-col items-center px-4 xl:px-64">
|
||||
<PageTitle class="self-center" title="part.contact" />
|
||||
<p class="text-justify text-gray-700 dark:text-gray-400 text-xl mb-8 mt-4">{{ $t('contact.description') }}</p>
|
||||
<p class="text-gray-700 dark:text-gray-400 text-xl mt-4 mb-8 text-justify">
|
||||
{{ $t('contact.description') }}
|
||||
</p>
|
||||
<section class="w-full mb-8 text-justify">
|
||||
<h1 class="font-bold text-gray-700 text-xl md:text-3xl my-4 dark:text-gray-400 text-center">
|
||||
{{ $t('contact.why.title') }}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
<template>
|
||||
<main class="flex flex-col items-center px-4 xl:px-64">
|
||||
<PageTitle title="part.env" />
|
||||
<p class="text-justify text-gray-700 dark:text-gray-400 text-xl my-8">{{ $t('env.title.description') }}</p>
|
||||
<p class="text-gray-700 dark:text-gray-400 text-xl mt-4 mb-8 text-justify">
|
||||
{{ $t('env.title.description') }}
|
||||
</p>
|
||||
<EnvGroup>
|
||||
<EnvTitle title="env.title.ide">
|
||||
<DevelopmentIcon />
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
<template>
|
||||
<main class="flex flex-col mb-12 px-4 xl:px-64">
|
||||
<PageTitle class="self-center" title="part.newsletter"/>
|
||||
<section class="flex flex-col 2xl:flex-row items-center py-8">
|
||||
<div class="ml-2 text-lg leading-6 text-justify dark:text-gray-400 text-gray-700">
|
||||
<div class="text-gray-700 dark:text-gray-400 text-xl mt-4 mb-8 text-justify">
|
||||
<p>{{ $t('newsletter.description') }}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<main v-if="projects" class="flex flex-col items-center px-4 xl:px-32">
|
||||
<PageTitle title="part.projects" />
|
||||
<h1 v-if="projects.length === 0" class="text-xl font-bold text-center my-8 w-full">{{ $t('projects.no_project') }}</h1>
|
||||
<section v-else class="flex flex-col justify-around items-center w-full">
|
||||
<h1 class="text-gray-700 dark:text-gray-400 text-xl mt-4 mb-8">{{ $t('projects.description') }}</h1>
|
||||
|
||||
Reference in New Issue
Block a user