Skip to content

Commit f6e5c3b

Browse files
committed
finish up landing page
1 parent ae86c6d commit f6e5c3b

File tree

5 files changed

+23
-19
lines changed

5 files changed

+23
-19
lines changed

docusaurus.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const config: Config = {
6565
// Replace with your project's social card
6666
image: "img/social-card.jpg",
6767
navbar: {
68-
title: "OS Dev Documentation",
68+
title: "SFU OS Dev Docs",
6969
logo: {
7070
alt: "SFU OS Dev logo",
7171
src: "img/oslogo_transparent.svg",

src/components/HomepageFeatures/index.tsx

+19-18
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,50 @@
1-
import clsx from 'clsx';
2-
import Heading from '@theme/Heading';
3-
import styles from './styles.module.css';
1+
import clsx from "clsx";
2+
import Heading from "@theme/Heading";
3+
import styles from "./styles.module.css";
44

55
type FeatureItem = {
66
title: string;
7-
Svg: React.ComponentType<React.ComponentProps<'svg'>>;
7+
Svg: React.ComponentType<React.ComponentProps<"svg">>;
88
description: JSX.Element;
99
};
1010

1111
const FeatureList: FeatureItem[] = [
1212
{
13-
title: 'Easy to Use',
14-
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
13+
title: "Easy to use",
14+
Svg: require("@site/static/img/2.svg").default,
1515
description: (
1616
<>
17-
Docusaurus was designed from the ground up to be easily installed and
18-
used to get your website up and running quickly.
17+
Docusaurus is a modern static site generator. It is easy to use and
18+
allows us to create a documentation tool for current and future
19+
colleagues.
1920
</>
2021
),
2122
},
2223
{
23-
title: 'Focus on What Matters',
24-
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
24+
title: "Easy to learn",
25+
Svg: require("@site/static/img/3.svg").default,
2526
description: (
2627
<>
27-
Docusaurus lets you focus on your docs, and we&apos;ll do the chores. Go
28-
ahead and move your docs into the <code>docs</code> directory.
28+
Based on user-friendly documentation, students can easily learn the
29+
important concepts of software development and open-source.
2930
</>
3031
),
3132
},
3233
{
33-
title: 'Powered by React',
34-
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
34+
title: "Contributions",
35+
Svg: require("@site/static/img/4.svg").default,
3536
description: (
3637
<>
37-
Extend or customize your website layout by reusing React. Docusaurus can
38-
be extended while reusing the same header and footer.
38+
Contribute your knowledge to the community for future colleagues who may
39+
struggle to join the open-source community and projects.
3940
</>
4041
),
4142
},
4243
];
4344

44-
function Feature({title, Svg, description}: FeatureItem) {
45+
function Feature({ title, Svg, description }: FeatureItem) {
4546
return (
46-
<div className={clsx('col col--4')}>
47+
<div className={clsx("col col--4")}>
4748
<div className="text--center">
4849
<Svg className={styles.featureSvg} role="img" />
4950
</div>

static/img/2.svg

+1
Loading

static/img/3.svg

+1
Loading

static/img/4.svg

+1
Loading

0 commit comments

Comments
 (0)