Skip to content

Commit

Permalink
Merge pull request #12 from ml-comm/docs/ui-fixes
Browse files Browse the repository at this point in the history
docs: minor docs changes
  • Loading branch information
b68web authored Nov 10, 2024
2 parents 6980556 + 931a1d4 commit ce9236f
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 1 deletion.
17 changes: 16 additions & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ import { defineConfig } from 'vitepress'
export default defineConfig({
title: "DDNS",
description: "A free subdomain provider for the Machine Learning community ",
head: [
['link', { rel: 'icon', href: 'https://github.com/ML-comm.png' }]
],
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Docs', link: '/getting-started' },
{ text: 'Fork', link: 'https://github.com/ml-comm/ddns/fork' },
],

logo: "https://github.com/ML-comm.png",
Expand All @@ -18,13 +22,24 @@ export default defineConfig({
text: 'Docs',
items: [
{ text: 'Getting Started', link: '/getting-started' },
{ text: 'Format', link: '/format' }
{ text: 'Format', link: '/format' },
{ text: 'Team', link: '/team' },
]
}
],

socialLinks: [
{ icon: 'github', link: 'https://github.com/ml-comm/ddns' }
],

editLink: {
pattern: "https://github.com/ML-comm/ddns/edit/main/docs/:path",
},

lastUpdated: {
text: 'Last Updated',
},

returnToTopLabel: 'Back to top',
},
})
54 changes: 54 additions & 0 deletions docs/team.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
layout: page
---
<script setup>
import {
VPTeamPage,
VPTeamPageTitle,
VPTeamMembers
} from 'vitepress/theme'

const members = [
{
avatar: 'https://github.com/smanitech.png',
name: 'Suraj Mani',
title: 'Community Organizer',
links: [
{ icon: 'github', link: 'https://github.com/smanitech' },
{ icon: 'twitter', link: 'https://twitter.com/smanitech' }
]
},
{
avatar: 'https://github.com/BRAVO68WEB.png',
name: 'Jyotirmoy Bandyopadhayaya',
title: 'Project Maintainer',
links: [
{ icon: 'github', link: 'https://github.com/BRAVO68WEB' },
{ icon: 'vercel', link: 'https://b68.dev' }
]
},
{
avatar: 'https://github.com/Ba3a-G.png',
name: 'Aryan Kumar',
title: 'Project Maintainer',
links: [
{ icon: 'github', link: 'https://github.com/Ba3a-G' },
{ icon: 'linkedin', link: 'https://linkedin.com/in/ba3a' }
]
}
]
</script>

<VPTeamPage>
<VPTeamPageTitle>
<template #title>
Our Team
</template>
<template #lead>
Meet the team behind the project.
</template>
</VPTeamPageTitle>
<VPTeamMembers
:members="members"
/>
</VPTeamPage>

0 comments on commit ce9236f

Please sign in to comment.