mirror of
https://github.com/ArthurDanjou/artchat.git
synced 2026-01-14 15:54:03 +01:00
91 lines
2.0 KiB
Vue
91 lines
2.0 KiB
Vue
<script lang="ts" setup>
|
|
const route = useRoute()
|
|
const { data: project } = await useAsyncData(`projects/${route.params.slug}`, () =>
|
|
queryCollection('projects').path(`/projects/${route.params.slug}`).first())
|
|
|
|
const { t } = useI18n()
|
|
|
|
useSeoMeta({
|
|
title: project.value?.title,
|
|
description: project.value?.description,
|
|
author: 'Arthur Danjou',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<main v-if="project" class="mt-8 md:mt-16 md:mb-32 mb-20">
|
|
<div class="flex">
|
|
<NuxtLinkLocale
|
|
class="flex items-center gap-2 mb-8 group text-sm hover:text-black dark:hover:text-white duration-300"
|
|
to="/canva"
|
|
>
|
|
<UIcon
|
|
class="group-hover:-translate-x-1 transform duration-300"
|
|
name="i-ph-arrow-left-duotone"
|
|
size="20"
|
|
/>
|
|
{{ t('post.back') }}
|
|
</NuxtLinkLocale>
|
|
</div>
|
|
<PostAlert class="mb-8" />
|
|
<div>
|
|
<div class="flex items-end justify-between gap-2 flex-wrap">
|
|
<h1
|
|
class="font-bold text-3xl text-black dark:text-white"
|
|
>
|
|
{{ project.title }}
|
|
</h1>
|
|
<div
|
|
class="text-sm text-neutral-500 duration-300 flex items-center gap-1"
|
|
>
|
|
<UIcon name="ph:calendar-duotone" size="16" />
|
|
<p>{{ useDateFormat(project.publishedAt, 'DD MMMM YYYY').value }} </p>
|
|
</div>
|
|
</div>
|
|
<p class="mt-2 text-base">
|
|
{{ project.description }}
|
|
</p>
|
|
</div>
|
|
<div
|
|
v-if="project.cover"
|
|
class="w-full rounded-md my-8"
|
|
>
|
|
<ProseImg
|
|
:src="`/projects/${project.cover}`"
|
|
label="Project cover"
|
|
/>
|
|
</div>
|
|
<USeparator
|
|
class="my-4"
|
|
icon="i-ph-pencil-line-duotone"
|
|
/>
|
|
<ClientOnly>
|
|
<ContentRenderer
|
|
:value="project"
|
|
class="!max-w-none prose dark:prose-invert"
|
|
/>
|
|
</ClientOnly>
|
|
<PostFooter />
|
|
</main>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.prose h2 a,
|
|
.prose h3 a,
|
|
.prose h4 a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.prose img {
|
|
margin: 0;
|
|
}
|
|
|
|
.katex-html {
|
|
display: none;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
</style>
|