Skip to content

Commit 794aae9

Browse files
committed
update the config
1 parent 5304155 commit 794aae9

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

docusaurus.config.ts

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type * as Preset from '@docusaurus/preset-classic';
44

55
const config: Config = {
66
title: 'SFU OS Dev club Docs',
7-
tagline: 'Dinosaurs are cool',
7+
tagline: 'Friendly documentation tool for OS Dev club',
88
favicon: 'img/favicon.ico',
99

1010
// Set the production url of your site here
@@ -85,6 +85,11 @@ const config: Config = {
8585
label: 'OS Dev Github',
8686
position: 'right',
8787
},
88+
{
89+
href: 'https://go.sfss.ca/clubs/867/info',
90+
label: 'Join OS Dev',
91+
position: 'right',
92+
},
8893
],
8994
},
9095
footer: {
@@ -104,33 +109,33 @@ const config: Config = {
104109
items: [
105110
{
106111
label: 'Instagram',
107-
href: 'https://stackoverflow.com/questions/tagged/docusaurus',
112+
href: 'https://www.instagram.com/sfu_osdev/',
108113
},
109114
{
110115
label: 'Discord',
111116
href: 'https://discord.gg/2xn6cTKGUq',
112117
},
113118
{
114119
label: 'LinkedIn',
115-
href: 'https://twitter.com/docusaurus',
120+
href: 'https://www.linkedin.com/company/sfu-osdev',
116121
},
117122
],
118123
},
119124
{
120-
title: 'More',
125+
title: 'Helpful resources',
121126
items: [
122127
{
123-
label: 'Blog',
124-
to: '/blog',
128+
label: 'Stack Overflow',
129+
href: 'https://stackoverflow.com',
125130
},
126131
{
127132
label: 'GitHub',
128-
href: 'https://github.com/facebook/docusaurus',
133+
href: 'https://github.com',
129134
},
130135
],
131136
},
132137
],
133-
copyright: `Copyright © ${new Date().getFullYear()} SFU Open Source Development Club, Inc. Built with Docusaurus.`,
138+
copyright: `Copyright © ${new Date().getFullYear()} SFU Open Source Development Club. Built with Docusaurus.`,
134139
},
135140
prism: {
136141
theme: prismThemes.github,

src/pages/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function HomepageHeader() {
2020
<Link
2121
className="button button--secondary button--lg"
2222
to="/docs/intro">
23-
Docusaurus Tutorial - 5min ⏱️
23+
Go to our documentation
2424
</Link>
2525
</div>
2626
</div>
@@ -32,8 +32,8 @@ export default function Home(): JSX.Element {
3232
const {siteConfig} = useDocusaurusContext();
3333
return (
3434
<Layout
35-
title={`Hello from ${siteConfig.title}`}
36-
description="Description will go into a meta tag in <head />">
35+
title={`${siteConfig.title}`}
36+
description="Official Documentation tool for SFU OS Dev club">
3737
<HomepageHeader />
3838
<main>
3939
<HomepageFeatures />

0 commit comments

Comments
 (0)