mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 17:03:50 +01:00
9581ad416c
* (midev-abouts) initial
* (add) team member
* fix
* (add) see more button
* (fix) column
* enhance(about-us): make avatars small
* change domains
* ✌️
---------
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
38 lines
1.4 KiB
Vue
38 lines
1.4 KiB
Vue
<template>
|
|
<div>
|
|
<GHero>
|
|
<template #title>{{ $t('_aboutUs.title') }}</template>
|
|
<template #description>
|
|
{{ $t('_aboutUs.description') }}
|
|
</template>
|
|
<template #icon>
|
|
<div class="hidden lg:block relative px-6 py-8">
|
|
<GDots class="absolute top-0 left-0 w-32 h-32 text-accent-600" />
|
|
<GDots class="absolute bottom-0 right-0 w-32 h-32 text-accent-600" />
|
|
<div class="relative lg:w-64 h-64 flex items-center">
|
|
<img class="drop-shadow-xl rounded-xl" src="/img/misc/midev.png" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</GHero>
|
|
<div class="pb-12 lg:mt-12 pt-6 bg-white dark:bg-slate-950">
|
|
<div class="container mx-auto max-w-screen-xl px-6 space-y-6 lg:space-y-8">
|
|
<GLargeLinks :items="[
|
|
{
|
|
to: localePath('/about-us/team/'),
|
|
title: $t('_aboutUs._team.title'),
|
|
description: $t('_aboutUs._team.description'),
|
|
img: '/img/emojis/technologist_3d.png',
|
|
},
|
|
]" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const localePath = useLocalePath();
|
|
</script>
|
|
|
|
<style></style>
|