mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
53 lines
1 KiB
Vue
53 lines
1 KiB
Vue
<script setup lang="ts">
|
|
import type { Project } from '~/types'
|
|
|
|
defineProps<{
|
|
project: Project
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<ProjectDetailCategoryDivider
|
|
title="ACTIVITY"
|
|
badge-text="3/10"
|
|
>
|
|
<UnoIcon
|
|
i-web-code_v2
|
|
text-24px
|
|
/>
|
|
</ProjectDetailCategoryDivider>
|
|
<ProjectDetailContainer>
|
|
<div
|
|
lg:flex
|
|
lg:justify-between
|
|
>
|
|
<div mt-32px>
|
|
<ProjectActivityLaunch
|
|
v-for="launch in project.history"
|
|
:key="launch.title"
|
|
:network="launch.title"
|
|
:date="launch.time"
|
|
:launch-type="launch.description"
|
|
:to="launch.link"
|
|
/>
|
|
</div>
|
|
<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"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</ProjectDetailContainer>
|
|
</template>
|