Skip to content

Commit

Permalink
Merge pull request layer5io#1346 from Tanuj22/Tanuj22/newcomers
Browse files Browse the repository at this point in the history
feat: newcomers page
  • Loading branch information
leecalcote authored Jan 14, 2021
2 parents ce73f2f + 25bbcbf commit bfeb14a
Show file tree
Hide file tree
Showing 20 changed files with 475 additions and 614 deletions.
10 changes: 5 additions & 5 deletions src/assets/data/tutorials/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const data = [
},
presenters: [
{
link: "community/members/ruth-ikegah",
link: "/community/members/ruth-ikegah",
name: "Ruth Ikegah",
},
],
Expand All @@ -50,7 +50,7 @@ const data = [
},
presenters: [
{
link: "community/members/lee-calcote",
link: "/community/members/lee-calcote",
name: "Lee Calcote",
},
],
Expand All @@ -64,15 +64,15 @@ const data = [
},
presenters: [
{
link: "community/members/jash-patel",
link: "/community/members/jash-patel",
name: "Jash Patel",
},
{
link: "community/members/tanuj-agarwal",
link: "/community/members/tanuj-agarwal",
name: "Tanuj Agarwal"
}
]
},
];

export default data;
export default data;
10 changes: 0 additions & 10 deletions src/assets/images/newcomers/Rectangle 399.svg

This file was deleted.

9 changes: 0 additions & 9 deletions src/assets/images/newcomers/Rectangle 401.svg

This file was deleted.

9 changes: 0 additions & 9 deletions src/assets/images/newcomers/Rectangle 402.svg

This file was deleted.

9 changes: 0 additions & 9 deletions src/assets/images/newcomers/Rectangle 403.svg

This file was deleted.

1 change: 0 additions & 1 deletion src/assets/images/newcomers/welcome_newcomers.svg

This file was deleted.

4 changes: 2 additions & 2 deletions src/pages/community/newcomers.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import SEO from "../../components/seo";
import Navigation from "../../sections/Navigation";
import Footer from "../../sections/Footer";
import Layout from "../../components/layout";
import NewcomersPage from "../../sections/Community/Newcomers/NewcomersPage";
import NewcomersGuide from "../../sections/Community/Newcomers-guide";

const newComers = () => {
return (
Expand All @@ -15,7 +15,7 @@ const newComers = () => {
<GlobalStyle />
<SEO title="Newcomers" />
<Navigation />
<NewcomersPage />
<NewcomersGuide />
<Footer />
</Layout>
</ThemeProvider>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import styled from "styled-components";

export const NewcomersGuideWrapper = styled.section`
.newcomers-welcome{
text-align: center;
.newcomers-journey{
display: flex;
align-items: center;
margin: 2rem 0;
h2{
margin-bottom: 2rem;
}
}
.how-to-contribute{
h3{
margin: auto;
font-weight: 600;
}
p {
margin: 2rem 0;
}
}
}
.instructions{
.step{
display: flex;
align-items: center;
margin-bottom: 2rem;
}
h3{
display:inline;
padding-bottom: 0.3rem;
border-bottom: 2px solid ${props => props.theme.primaryLightColorTwo};
}
li{
margin-bottom: 1rem;
}
p{
margin-top: 1rem;
}
img{
display: block;
margin: 0 auto;
max-width: 21.875rem
}
}
.table-wrapper{
text-align: center;
}
`;

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit bfeb14a

Please sign in to comment.