2023-12-19 18:43:42 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Project } from '~/types'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
project: Project
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-09-02 15:13:43 +02:00
|
|
|
<ProjectDetailCategoryDivider
|
|
|
|
title="ACTIVITY"
|
|
|
|
badge-text="3/10"
|
|
|
|
>
|
|
|
|
<UnoIcon
|
|
|
|
i-web-code_v2
|
|
|
|
text-24px
|
|
|
|
/>
|
2023-12-19 18:43:42 +01:00
|
|
|
</ProjectDetailCategoryDivider>
|
|
|
|
<ProjectDetailContainer>
|
2024-09-02 15:13:43 +02:00
|
|
|
<div
|
|
|
|
lg:flex
|
|
|
|
lg:justify-between
|
|
|
|
>
|
2023-12-19 18:43:42 +01:00
|
|
|
<div mt-32px>
|
|
|
|
<ProjectActivityLaunch
|
2024-09-18 10:48:08 +02:00
|
|
|
v-for="launch in project.history"
|
|
|
|
:key="launch.title"
|
|
|
|
:network="launch.title"
|
|
|
|
:date="launch.time"
|
|
|
|
:launch-type="launch.description"
|
|
|
|
:to="launch.link"
|
2023-12-19 18:43:42 +01:00
|
|
|
/>
|
|
|
|
</div>
|
2024-09-02 15:13:43 +02:00
|
|
|
<div
|
|
|
|
flex
|
|
|
|
flex-col
|
|
|
|
gap-24px
|
|
|
|
mt-16px
|
|
|
|
>
|
|
|
|
<ProjectActivityGithub
|
|
|
|
:active-devs="13"
|
|
|
|
last-commit="26/11/2022"
|
|
|
|
:stars="45"
|
|
|
|
/>
|
|
|
|
<ProjectActivityTwitter
|
|
|
|
:followers="13"
|
|
|
|
posts="26/11/202"
|
|
|
|
:retweets="1654"
|
|
|
|
/>
|
2023-12-19 18:43:42 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</ProjectDetailContainer>
|
|
|
|
</template>
|