1
mirror of https://github.com/importantimport/urara-docs.git synced 2024-09-19 18:08:40 +08:00
urara-docs/public/extension/project/projects.ts

32 lines
846 B
TypeScript
Raw Permalink Normal View History

2022-12-28 23:38:49 +08:00
export type Project = {
id: string
name: string
tags?: string[]
feature?: string
description?: string
img: string
link?: string
}
export const projects: Project[] = [
{
id: 'urara',
name: 'Urara',
tags: ['Svelte', 'TypeScript'],
description:
"🌸 Sweet, Powerful, IndieWeb-Compatible SvelteKit Blog Starter. [δ](Delta)",
feature: 'Svelte',
img: 'https://github.com/importantimport/urara/raw/main/urara/hello-world/urara.webp',
link: 'https://github.com/importantimport/urara'
},
{
id: 'urara-docs',
name: 'Urara Docs',
tags: ['TypeScript'],
feature: 'TypeScript',
description:
'🌸 Documentation for Urara',
img: 'https://github.com/importantimport/urara/raw/main/urara/hello-world/urara.webp',
link: 'https://github.com/importantimport/urara-docs'
}
]