Skip to content

Commit ce9236f

Browse files
authored
Merge pull request #12 from ml-comm/docs/ui-fixes
docs: minor docs changes
2 parents 6980556 + 931a1d4 commit ce9236f

File tree

2 files changed

+70
-1
lines changed

2 files changed

+70
-1
lines changed

docs/.vitepress/config.mts

+16-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@ import { defineConfig } from 'vitepress'
44
export default defineConfig({
55
title: "DDNS",
66
description: "A free subdomain provider for the Machine Learning community ",
7+
head: [
8+
['link', { rel: 'icon', href: 'https://github.com/ML-comm.png' }]
9+
],
710
themeConfig: {
811
// https://vitepress.dev/reference/default-theme-config
912
nav: [
1013
{ text: 'Home', link: '/' },
1114
{ text: 'Docs', link: '/getting-started' },
15+
{ text: 'Fork', link: 'https://github.com/ml-comm/ddns/fork' },
1216
],
1317

1418
logo: "https://github.com/ML-comm.png",
@@ -18,13 +22,24 @@ export default defineConfig({
1822
text: 'Docs',
1923
items: [
2024
{ text: 'Getting Started', link: '/getting-started' },
21-
{ text: 'Format', link: '/format' }
25+
{ text: 'Format', link: '/format' },
26+
{ text: 'Team', link: '/team' },
2227
]
2328
}
2429
],
2530

2631
socialLinks: [
2732
{ icon: 'github', link: 'https://github.com/ml-comm/ddns' }
2833
],
34+
35+
editLink: {
36+
pattern: "https://github.com/ML-comm/ddns/edit/main/docs/:path",
37+
},
38+
39+
lastUpdated: {
40+
text: 'Last Updated',
41+
},
42+
43+
returnToTopLabel: 'Back to top',
2944
},
3045
})

docs/team.md

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
layout: page
3+
---
4+
<script setup>
5+
import {
6+
VPTeamPage,
7+
VPTeamPageTitle,
8+
VPTeamMembers
9+
} from 'vitepress/theme'
10+
11+
const members = [
12+
{
13+
avatar: 'https://github.com/smanitech.png',
14+
name: 'Suraj Mani',
15+
title: 'Community Organizer',
16+
links: [
17+
{ icon: 'github', link: 'https://github.com/smanitech' },
18+
{ icon: 'twitter', link: 'https://twitter.com/smanitech' }
19+
]
20+
},
21+
{
22+
avatar: 'https://github.com/BRAVO68WEB.png',
23+
name: 'Jyotirmoy Bandyopadhayaya',
24+
title: 'Project Maintainer',
25+
links: [
26+
{ icon: 'github', link: 'https://github.com/BRAVO68WEB' },
27+
{ icon: 'vercel', link: 'https://b68.dev' }
28+
]
29+
},
30+
{
31+
avatar: 'https://github.com/Ba3a-G.png',
32+
name: 'Aryan Kumar',
33+
title: 'Project Maintainer',
34+
links: [
35+
{ icon: 'github', link: 'https://github.com/Ba3a-G' },
36+
{ icon: 'linkedin', link: 'https://linkedin.com/in/ba3a' }
37+
]
38+
}
39+
]
40+
</script>
41+
42+
<VPTeamPage>
43+
<VPTeamPageTitle>
44+
<template #title>
45+
Our Team
46+
</template>
47+
<template #lead>
48+
Meet the team behind the project.
49+
</template>
50+
</VPTeamPageTitle>
51+
<VPTeamMembers
52+
:members="members"
53+
/>
54+
</VPTeamPage>

0 commit comments

Comments
 (0)