├── .prettierignore ├── src ├── images │ ├── fist.png │ ├── vogue.png │ ├── wgsn.png │ ├── afropunk.png │ ├── diamonds.png │ ├── flower-mouth.png │ ├── gatsby-icon.png │ ├── sexy-orange.png │ ├── creative-boom.png │ ├── poppin-shades.png │ ├── gatsby-astronaut.png │ ├── twitter.svg │ └── instagram.svg ├── pages │ ├── page-2.js │ ├── 404.js │ └── index.js ├── components │ ├── header.js │ ├── footer.js │ ├── videoSection.js │ ├── banner.js │ └── aboutBlurb.js └── styles │ └── styles.scss ├── .prettierrc ├── gatsby-node.js ├── gatsby-browser.js ├── gatsby-ssr.js ├── LICENSE ├── gatsby-config.js ├── .gitignore ├── package.json └── README.md /.prettierignore: -------------------------------------------------------------------------------- 1 | .cache 2 | package.json 3 | package-lock.json 4 | public 5 | -------------------------------------------------------------------------------- /src/images/fist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/fist.png -------------------------------------------------------------------------------- /src/images/vogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/vogue.png -------------------------------------------------------------------------------- /src/images/wgsn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/wgsn.png -------------------------------------------------------------------------------- /src/images/afropunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/afropunk.png -------------------------------------------------------------------------------- /src/images/diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/diamonds.png -------------------------------------------------------------------------------- /src/images/flower-mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/flower-mouth.png -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/images/sexy-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/sexy-orange.png -------------------------------------------------------------------------------- /src/images/creative-boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/creative-boom.png -------------------------------------------------------------------------------- /src/images/poppin-shades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/poppin-shades.png -------------------------------------------------------------------------------- /src/images/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/Odunsi-portfolio/HEAD/src/images/gatsby-astronaut.png -------------------------------------------------------------------------------- /src/pages/page-2.js: -------------------------------------------------------------------------------- 1 | import React from "react" 2 | 3 | const SecondPage = () =>
page 2
4 | 5 | export default SecondPage 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "endOfLine": "lf", 3 | "semi": false, 4 | "singleQuote": false, 5 | "tabWidth": 2, 6 | "trailingComma": "es5" 7 | } 8 | -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Implement Gatsby's Node APIs in this file. 3 | * 4 | * See: https://www.gatsbyjs.org/docs/node-apis/ 5 | */ 6 | 7 | // You can delete this file if you're not using it 8 | -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Implement Gatsby's Browser APIs in this file. 3 | * 4 | * See: https://www.gatsbyjs.org/docs/browser-apis/ 5 | */ 6 | 7 | // You can delete this file if you're not using it 8 | -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- 1 | import React from "react" 2 | 3 | const NotFoundPage = () => { 4 | return ( 5 |404
7 |21 | I’m so happy to present the 1st trailer of the film. “Let’s Talk 22 | About It Now” is a film that focuses on Mental health in the 23 | African community, and the black race as a whole, as this is a 24 | topic we tend to shy away from in our community . With this film, 25 | we hope to reduce/eradicate the stigma surrounding Mental Health 26 | In our community, making it a topic that is freely discussed as 27 | opposed to leaving it on the back burner. 28 |
29 |32 | It is a long established fact that a reader will be distracted by 33 | the readable content of a page when looking at its layout. The 34 | point of using Lorem Ipsum is that it has a more-or-less normal 35 | distribution of letters, as opposed to using ‘Content here, 36 | content here’, making it look like readable English. Many desktop 37 | publishing packages and web page editors now use Lorem Ipsum as 38 | their default model text, and a search for ‘lorem ipsum’ will 39 | uncover many web sites still in their infancy. Various versions 40 | have evolved over the years, sometimes by accident, sometimes on 41 | purpose (injected humour and the like). 42 |
43 |
3 |
4 |
5 |
6 |