Skip to content

Commit 6659611

Browse files
author
Dandelion Mané
authored
Homepage revamp (#86)
* Add a bare-bones media page This adds a media page that we can link to from the homepage. For now it just has some links to talks I've given, and to the SourceCred podcast. I linked to it from the Resources page, but not from the sidebar--we'll revamp the sidebar later. * Add an empty/scaffolded team page Not linked to from anywhere. * Revamp homepage with more links This changes the grid of 6 "Features" of SourceCred (which are nearly a year old and kind of confusing more than informative tbh) with a grid of 6 featured links going to major areas of interest like how to get involved. The "Read the Docs" button has been demoted so that it's now just one of the six link buddies. Also, I renamed all the logo variants, they used to be named based on the "feature" but now they just have a numerical ordering.
1 parent 7c1383c commit 6659611

File tree

11 files changed

+51
-31
lines changed

11 files changed

+51
-31
lines changed

docs/intro/resources.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
title: 🌳 Resources
3-
description:
3+
description:
44
---
55

6-
TODO
7-
(guidance on where to go from here)
8-
(links to forums, podcast, videos, etc)
6+
Check out our [media page](../resources/media)

docs/resources/media.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: 🎞 Media
3+
description: SourceCred talks, podcasts, and more.
4+
---
5+
6+
## Videos
7+
8+
- [SourceCred at the Open 2020 Webinar](https://www.youtube.com/watch?v=tGRcPW3LXmU)
9+
- [SourceCred and the CredSperiment at Ready Layer One](https://www.youtube.com/watch?v=38OlnEPpzeo)
10+
- [SourceCred: A Social Algorithm at Sustain Web3 2020](https://www.youtube.com/watch?v=EME4CZscPB8)
11+
- [SourceCred at the Berlin Open Source Salon](https://www.youtube.com/watch?v=fK0vjRq-4oI&t=1s)
12+
- [SourceCred at Lab Day 2018](https://www.youtube.com/watch?v=qEIHmKPMpYE)
13+
14+
## Podcast
15+
- [SourceCred Podcast](https://sourcecred.podbean.com/)

docs/resources/team.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: 🧗 Team
3+
description: Meet the SourceCred team!
4+
---
5+
6+
This page is under construction!

src/pages/index.js

+27-26
Original file line numberDiff line numberDiff line change
@@ -10,71 +10,79 @@ import { HeroLogo } from '../components/HeroLogo';
1010

1111
const features = [
1212
{
13-
title: <>data driven</>,
14-
imageUrl: 'img/data-driven.svg',
13+
title: <>Learn About SourceCred</>,
14+
imageUrl: 'img/logo_variants/1.svg',
15+
linkUrl: 'docs/intro/what',
1516
description: (
1617
<>
17-
Scores are calculated using data from a project: forum posts, commits, comments, and more.
18+
Read our docs to learn about how SourceCred works and how to use it.
1819
</>
1920
),
2021
},
2122
{
22-
title: <>community controlled</>,
23-
imageUrl: 'img/community-controlled.svg',
23+
title: <>Get Involved</>,
24+
imageUrl: 'img/logo_variants/2.svg',
25+
linkUrl: 'docs/contributing/get-involved',
2426
description: (
2527
<>
26-
Each project community sets the values, priorities, weights, and norms.
28+
Find out how to join our community and start contributing.
2729
</>
2830
),
2931
},
3032
{
31-
title: <>transparent</>,
32-
imageUrl: 'img/transparent.svg',
33+
title: <>Read the Blog</>,
34+
imageUrl: 'img/logo_variants/3.svg',
35+
linkUrl: 'blog',
3336
description: (
3437
<>
35-
You can see what every score is, and more importantly, why.
38+
Read the latest upates on the SourceCred project.
3639
</>
3740
),
3841
},
3942
{
40-
title: <>extensible</>,
41-
imageUrl: 'img/extensible.svg',
43+
title: <>Explore Our Cred</>,
44+
imageUrl: 'img/logo_variants/4.svg',
45+
linkUrl: 'https://cred.sourcecred.io/timeline/@sourcecred/',
4246
description: (
4347
<>
44-
SourceCred is built around a plugin architecture. You can extend it to track any kind of contribution.
48+
See SourceCred's own cred scores, updated weekly.
4549
</>
4650
),
4751
},
4852
{
49-
title: <>decentralized</>,
50-
imageUrl: 'img/decentralized.svg',
53+
title: <>Meet the Team</>,
54+
imageUrl: 'img/logo_variants/5.svg',
55+
linkUrl: 'docs/resources/team',
5156
description: (
5257
<>
53-
There's no "CredHub"; just an open-source system that anyone can set up and use.
58+
Learn about the wonderful humans making SourceCred a reality.
5459
</>
5560
),
5661
},
5762
{
58-
title: <>intersubjective</>,
59-
imageUrl: 'img/intersubjective.svg',
63+
title: <>Watch SourceCred's Talks</>,
64+
imageUrl: 'img/logo_variants/6.svg',
65+
linkUrl: 'docs/resources/media',
6066
description: (
6167
<>
62-
Scores are a blend of objective data and subjective judgement.
68+
Dive into our team's media collection, including recorded talks and podcasts.
6369
</>
6470
),
6571
},
6672
];
6773

68-
function Feature({imageUrl, title, description}) {
74+
function Feature({imageUrl, title, description, linkUrl}) {
6975
const imgUrl = useBaseUrl(imageUrl);
7076
return (
7177
<div className={classnames('col col--4', styles.feature)}>
78+
<a href={linkUrl}>
7279
{imgUrl && (
7380
<div className="text--center">
7481
<img className={styles.featureImage} src={imgUrl} alt={title} />
7582
</div>
7683
)}
7784
<h3>{title}</h3>
85+
</a>
7886
<p>{description}</p>
7987
</div>
8088
);
@@ -92,13 +100,6 @@ function Home() {
92100
<HeroLogo />
93101
<h1 className="hero__title">{siteConfig.title}</h1>
94102
<p className="hero__subtitle">{siteConfig.tagline}</p>
95-
<div className={styles.buttons}>
96-
<Link
97-
className="button button--primary button--lg"
98-
to={useBaseUrl('docs/intro/what')}>
99-
Read The Docs
100-
</Link>
101-
</div>
102103
</div>
103104
</header>
104105
<main>

src/pages/styles.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
.heroBanner {
8-
padding: 6rem 0;
8+
padding: 1.5rem 0;
99
text-align: center;
1010
position: relative;
1111
overflow: hidden;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)