Skip to content

Commit

Permalink
docs(): expand, add blog section
Browse files Browse the repository at this point in the history
AmitMY committed Dec 3, 2024
1 parent 94beec6 commit 5ecb0e7
Showing 7 changed files with 63 additions and 26 deletions.
79 changes: 57 additions & 22 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
@@ -8,6 +8,10 @@ export default withMermaid(
title: 'Documentation',
description: 'sign.mt Documentation and Blog',
base: '/docs/',
lastUpdated: true,
sitemap: {
hostname: 'https://sign.mt/docs/',
},
themeConfig: {
search: {
provider: 'local',
@@ -20,29 +24,60 @@ export default withMermaid(
dark: '/logo-dark.svg',
alt: 'sign.mt Logo',
},
sidebar: [
{
text: 'Fact Sheets',
items: [
{
text: 'Numbers',
link: '/facts/numbers',
items: [
{text: 'Hearing Loss', link: '/facts/numbers#hearing-loss'},
{text: 'Deafness', link: '/facts/numbers#deafness'},
],
},
{
text: 'Literacy',
link: '/facts/literacy',
items: [
{text: 'Challenges', link: '/facts/literacy#challenges-and-causes'},
{text: 'Statistics', link: '/facts/literacy#statistics'},
],
},
],
},
nav: [
{text: 'Docs', link: '/docs/introduction/getting-started'},
{text: 'Blog', link: '/blog/introduction/our-blog'},
],
sidebar: {
'/blog/': [
{
text: 'Introduction',
items: [
{
text: 'Our Blog',
link: '/blog/introduction/our-blog',
},
],
},
],
'/docs/': [
{
text: 'Introduction',
items: [
{
text: 'Getting Started',
link: '/docs/introduction/getting-started',
},
],
},
{
text: 'Fact Sheets',
collapsed: false,
items: [
{
text: 'Numbers',
link: '/docs/facts/numbers',
items: [
{text: 'Hearing Loss', link: '/docs/facts/numbers#hearing-loss'},
{text: 'Deafness', link: '/docs/facts/numbers#deafness'},
],
},
{
text: 'Literacy',
link: '/docs/facts/literacy',
items: [
{text: 'Challenges', link: '/docs/facts/literacy#challenges-and-causes'},
{text: 'Statistics', link: '/docs/facts/literacy#statistics'},
],
},
{
text: 'Market',
link: '/docs/facts/market',
},
],
},
],
},

socialLinks: [
{icon: 'github', link: 'https://github.com/sign/translate'},
1 change: 1 addition & 0 deletions docs/blog/introduction/our-blog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Blog!
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions docs/docs/introduction/getting-started.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Getting Started
8 changes: 4 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -8,11 +8,11 @@ hero:
tagline: 'A collection of resources on sign languages, deaf culture, and our technology.'
actions:
- theme: brand
text: Numbers
link: /facts/numbers
text: Docs
link: /docs/introduction/getting-started
- theme: alt
text: literacy
link: /facts/literacy
text: Blog
link: /blog/introduction/our-blog
#features:
# - title: Feature A
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit

0 comments on commit 5ecb0e7

Please sign in to comment.