Skip to content
This repository was archived by the owner on Apr 19, 2021. It is now read-only.

Commit 6ad57b6

Browse files
committed
Refresh the list of Gitpod examples
1 parent b2be581 commit 6ad57b6

File tree

7 files changed

+44
-24
lines changed

7 files changed

+44
-24
lines changed

src/components/index/GetStarted.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,22 @@ const StyledGetStarted = styled.div`
3333
3434
&__projects {
3535
display: flex;
36-
justify-content: space-between;
36+
justify-content: center;
37+
flex-wrap: wrap;
3738
3839
@media (max-width: ${sizes.breakpoints.lg}) {
3940
overflow-x: scroll;
41+
justify-content: space-between;
42+
flex-wrap: nowrap;
4043
}
4144
4245
& > .project {
43-
margin-bottom: 3rem;
46+
margin-bottom: 5rem;
47+
margin-right: 5rem;
4448
45-
@media (min-wdith: ${sizes.breakpoints.md}) {
49+
@media (min-width: ${sizes.breakpoints.md}) {
4650
width: 19rem;
4751
}
48-
49-
@media (max-width: ${sizes.breakpoints.lg}) {
50-
margin-right: 5rem;
51-
}
5252
}
5353
}
5454
}

src/components/index/Project.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const StyledProject = styled.div`
2727
object {
2828
height: 8.5rem;
2929
width: 14rem;
30+
object-fit: contain;
3031
}
3132
3233
& > * {

src/contents/projects.tsx

Lines changed: 36 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,58 @@ import TS from '../resources/ts.svg'
33
import GO from '../resources/go.svg'
44
import JAVA from '../resources/java.svg'
55
import PY from '../resources/py.svg'
6+
import CS from '../resources/csharp.png'
7+
import RS from '../resources/rust.png'
8+
import RB from '../resources/ruby.png'
69

710

811
export const projects = [
12+
{
13+
image: TS,
14+
title: 'TypeScript',
15+
githubUrl: "https://github.com/eclipse-theia/theia",
16+
alt: "TypeScript",
17+
},
18+
{
19+
image: GO,
20+
title: 'Go',
21+
githubUrl: "https://github.com/prometheus/prometheus",
22+
alt: "Go",
23+
},
24+
{
25+
image: RS,
26+
title: 'Rust',
27+
githubUrl: "https://github.com/nushell/nushell",
28+
alt: "Rust",
29+
},
930
{
1031
image: JAVA,
1132
title: 'Java & Spring',
1233
githubUrl: "https://github.com/gitpod-io/spring-petclinic",
1334
gitlabUrl: "https://gitlab.com/gitpod/spring-petclinic",
1435
bitbucketUrl: "https://bitbucket.org/gitpod/spring-petclinic",
15-
alt: "Java Logo",
16-
},
17-
{
18-
image: JS,
19-
title: 'React & Next.js',
20-
githubUrl: "https://github.com/gitpod-io/NextSimpleStarter",
21-
alt: "JavaScript Logo",
36+
alt: "Java",
2237
},
2338
{
2439
image: PY,
2540
title: 'Python & Flask',
2641
githubUrl: "https://github.com/breatheco-de/python-flask-api-tutorial",
27-
alt: "Python Logo",
42+
alt: "Python",
2843
},
2944
{
30-
image: TS,
31-
title: <span>Gatsby & TypeScript</span>,
32-
githubUrl: "https://github.com/gitpod-io/website",
33-
alt: "TypeScript Logo",
45+
image: CS,
46+
title: '.NET Core',
47+
githubUrl: "https://github.com/gitpod-io/dotnetcore",
48+
gitlabUrl: "https://gitlab.com/gitpod/dotnetcore",
49+
bitbucketUrl: "https://bitbucket.org/gitpod/dotnetcore",
50+
alt: "C#",
3451
},
3552
{
36-
image: GO,
37-
title: 'Go & Gin',
38-
githubUrl: "https://github.com/gitpod-io/go-gin-app",
39-
alt: "Go Logo",
40-
}
53+
image: RB,
54+
title: 'Rails & PostgreSQL',
55+
githubUrl: "https://github.com/gitpod-io/ruby-on-rails",
56+
gitlabUrl: "https://gitlab.com/gitpod/rails",
57+
bitbucketUrl: "https://bitbucket.org/gitpod/ruby-on-rails",
58+
alt: "Ruby",
59+
},
4160
]

src/resources/csharp.png

198 KB
Loading

src/resources/nodejs.png

57.4 KB
Loading

src/resources/ruby.png

197 KB
Loading

src/resources/rust.png

172 KB
Loading

0 commit comments

Comments
 (0)