mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-02-03 04:27:50 +01:00
Add new apps
This commit is contained in:
@@ -37,9 +37,6 @@ defineProps<{
|
|||||||
<div v-else :class="`text-${app.color}-400`" class="text-xl font-medium">
|
<div v-else :class="`text-${app.color}-400`" class="text-xl font-medium">
|
||||||
<p>{{ app.name }}</p>
|
<p>{{ app.name }}</p>
|
||||||
</div>
|
</div>
|
||||||
<p v-if="app.description" class="text-sm text-neutral-500">
|
|
||||||
{{ app.description }}
|
|
||||||
</p>
|
|
||||||
<div class="flex gap-2 mt-1">
|
<div class="flex gap-2 mt-1">
|
||||||
<UBadge
|
<UBadge
|
||||||
v-for="tag in app.tags"
|
v-for="tag in app.tags"
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ArtSite",
|
"name": "ArtSite",
|
||||||
"primary": true,
|
"primary": true,
|
||||||
"description": "Mon site personnel",
|
|
||||||
"url": "https://arthurdanjou.fr/",
|
"url": "https://arthurdanjou.fr/",
|
||||||
"tags": [
|
"tags": [
|
||||||
{
|
{
|
||||||
|
|||||||
17
content/perso/office365.json
Normal file
17
content/perso/office365.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "Office 365",
|
||||||
|
"primary": true,
|
||||||
|
"url": "https://www.microsoft365.com/?auth=2",
|
||||||
|
"tags": [
|
||||||
|
{
|
||||||
|
"name": "Studies",
|
||||||
|
"color": "sky"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Perso",
|
||||||
|
"color": "pink"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"icon": "i-hugeicons:office-365",
|
||||||
|
"color": "orange"
|
||||||
|
}
|
||||||
17
content/perso/outlook.json
Normal file
17
content/perso/outlook.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "Outlook",
|
||||||
|
"primary": true,
|
||||||
|
"url": "https://outlook.office.com/mail/",
|
||||||
|
"tags": [
|
||||||
|
{
|
||||||
|
"name": "Studies",
|
||||||
|
"color": "sky"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Perso",
|
||||||
|
"color": "pink"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"icon": "i-ph:microsoft-outlook-logo-duotone",
|
||||||
|
"color": "blue"
|
||||||
|
}
|
||||||
@@ -3,7 +3,6 @@ import type { ParsedContent } from '@nuxt/content'
|
|||||||
export interface AppType extends ParsedContent {
|
export interface AppType extends ParsedContent {
|
||||||
primary?: boolean
|
primary?: boolean
|
||||||
name: string
|
name: string
|
||||||
description?: string
|
|
||||||
nuxt?: string
|
nuxt?: string
|
||||||
url: string
|
url: string
|
||||||
icon: string
|
icon: string
|
||||||
|
|||||||
Reference in New Issue
Block a user