mirror of
https://github.com/ArthurDanjou/website.git
synced 2026-01-25 09:20:32 +01:00
add talents
This commit is contained in:
61
src/pages/work.vue
Normal file
61
src/pages/work.vue
Normal file
@@ -0,0 +1,61 @@
|
||||
<script lang="ts" setup>
|
||||
const appConfig = useAppConfig()
|
||||
function getColor() {
|
||||
return `text-${appConfig.ui.primary}-500`
|
||||
}
|
||||
|
||||
useHead({
|
||||
title: 'My work • Arthur Danjou',
|
||||
})
|
||||
|
||||
const { data: projects } = await useProjects()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section class="w-container lg:my-24 my-16">
|
||||
<div class="max-w-3xl space-y-8">
|
||||
<div>
|
||||
<h1 class="text-4xl font-bold tracking-tight text-zinc-800 dark:text-zinc-100 sm:text-5xl !leading-tight">
|
||||
All my projects can be found on GitHub and by scrolling down.
|
||||
</h1>
|
||||
<p class="leading-relaxed text-subtitle">
|
||||
I’ve worked on tons of little projects over the years but these are the ones that I’m most proud of. Many of them are open-source, so if you see something that piques your interest, check out the code and contribute if you have ideas for how it can be improved.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-16 md:mt-20">
|
||||
<div class="grid grid-cols-1 gap-x-12 gap-y-16 sm:grid-cols-2 lg:grid-cols-3">
|
||||
<div
|
||||
v-for="project in projects"
|
||||
:key="project.name"
|
||||
class="group relative flex flex-col justify-between"
|
||||
>
|
||||
<div class="relative z-10 flex h-12 w-12 items-center justify-center rounded-full bg-white shadow-md shadow-zinc-800/5 ring-1 ring-zinc-900/5 dark:border dark:border-zinc-700/50 dark:bg-zinc-800 dark:ring-0">
|
||||
<Icon :name="project.icon" size="24" />
|
||||
</div>
|
||||
<h2 class="mt-6 text-base font-semibold text-zinc-800 dark:text-zinc-100">
|
||||
<div class="absolute -inset-y-6 -inset-x-4 z-0 scale-95 bg-zinc-50 opacity-0 transition group-hover:scale-100 group-hover:opacity-100 dark:bg-zinc-800/50 sm:-inset-x-6 sm:rounded-2xl" />
|
||||
<NuxtLink :to="project.link" target="_blank">
|
||||
<span class="absolute -inset-y-6 -inset-x-4 z-20 sm:-inset-x-6 sm:rounded-2xl" />
|
||||
<span class="relative z-10">{{ project.title }}</span>
|
||||
</NuxtLink>
|
||||
</h2>
|
||||
<p class="relative z-10 my-2 text-sm text-zinc-600 dark:text-zinc-400">
|
||||
{{ project.description }}
|
||||
</p>
|
||||
<div class="flex gap-2 z-10">
|
||||
<span
|
||||
v-for="tag in project.tags"
|
||||
:key="tag"
|
||||
class="text-xs p-0.5 text-subtitle rounded-md ring-1 ring-zinc-900/5 dark:border dark:border-zinc-700/50 dark:bg-zinc-800 dark:ring-0"
|
||||
>{{ tag }}</span>
|
||||
</div>
|
||||
<p class="relative z-10 mt-6 flex text-sm font-medium items-center" :class="getColor()">
|
||||
<UIcon name="i-ph-link-bold" />
|
||||
<span class="ml-2">{{ project.link.replace('https://', '') }}</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
Reference in New Issue
Block a user