├── .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 |
6 |

404

7 |
8 | ) 9 | } 10 | 11 | export default NotFoundPage 12 | -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Implement Gatsby's SSR (Server Side Rendering) APIs in this file. 3 | * 4 | * See: https://www.gatsbyjs.org/docs/ssr-apis/ 5 | */ 6 | 7 | // You can delete this file if you're not using it 8 | -------------------------------------------------------------------------------- /src/images/twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- 1 | import React from "react" 2 | import "../styles/styles.scss" 3 | 4 | import Scrollbar from "smooth-scrollbar" 5 | 6 | //Import Components 7 | import Header from "../components/header" 8 | import Banner from "../components/banner" 9 | import AboutBlurb from "../components/aboutBlurb" 10 | import VideoSection from "../components/videoSection" 11 | import Footer from "../components/footer" 12 | 13 | const IndexPage = () => ( 14 |
15 |
16 | 17 | 18 | 19 |
21 | ) 22 | 23 | export default IndexPage 24 | -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- 1 | import { Link } from "gatsby" 2 | import React from "react" 3 | 4 | const Header = () => ( 5 |
6 |
7 |
8 |
9 | ODUNSI 10 |
11 |
12 | 17 |
18 |
19 |
20 |
21 | ) 22 | 23 | export default Header 24 | -------------------------------------------------------------------------------- /src/images/instagram.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 gatsbyjs 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | siteMetadata: { 3 | title: `Gatsby Default Starter`, 4 | description: `Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.`, 5 | author: `@gatsbyjs`, 6 | }, 7 | plugins: [ 8 | `gatsby-plugin-react-helmet`, 9 | { 10 | resolve: `gatsby-source-filesystem`, 11 | options: { 12 | name: `images`, 13 | path: `${__dirname}/src/images`, 14 | }, 15 | }, 16 | `gatsby-transformer-sharp`, 17 | `gatsby-plugin-sharp`, 18 | { 19 | resolve: `gatsby-plugin-manifest`, 20 | options: { 21 | name: `gatsby-starter-default`, 22 | short_name: `starter`, 23 | start_url: `/`, 24 | background_color: `#663399`, 25 | theme_color: `#663399`, 26 | display: `minimal-ui`, 27 | icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site. 28 | }, 29 | }, 30 | `gatsby-plugin-sass`, 31 | // this (optional) plugin enables Progressive Web App + Offline functionality 32 | // To learn more, visit: https://gatsby.dev/offline 33 | // `gatsby-plugin-offline`, 34 | ], 35 | } 36 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # dotenv environment variable files 55 | .env* 56 | 57 | # gatsby files 58 | .cache/ 59 | public 60 | 61 | # Mac files 62 | .DS_Store 63 | 64 | # Yarn 65 | yarn-error.log 66 | .pnp/ 67 | .pnp.js 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gatsby-starter-default", 3 | "private": true, 4 | "description": "A simple starter to get up and developing quickly with Gatsby", 5 | "version": "0.1.0", 6 | "author": "Kyle Mathews ", 7 | "dependencies": { 8 | "gatsby": "^2.17.6", 9 | "gatsby-image": "^2.2.30", 10 | "gatsby-plugin-manifest": "^2.2.25", 11 | "gatsby-plugin-offline": "^3.0.17", 12 | "gatsby-plugin-react-helmet": "^3.1.13", 13 | "gatsby-plugin-sass": "^2.1.20", 14 | "gatsby-plugin-sharp": "^2.2.34", 15 | "gatsby-source-filesystem": "^2.1.35", 16 | "gatsby-transformer-sharp": "^2.3.1", 17 | "gsap": "^2.1.3", 18 | "node-sass": "^4.13.0", 19 | "prop-types": "^15.7.2", 20 | "react": "^16.11.0", 21 | "react-dom": "^16.11.0", 22 | "react-helmet": "^5.2.1", 23 | "smooth-scrollbar": "^8.5.0" 24 | }, 25 | "devDependencies": { 26 | "prettier": "^1.18.2" 27 | }, 28 | "keywords": [ 29 | "gatsby" 30 | ], 31 | "license": "MIT", 32 | "scripts": { 33 | "build": "gatsby build", 34 | "develop": "gatsby develop", 35 | "format": "prettier --write \"**/*.{js,jsx,json,md}\"", 36 | "start": "npm run develop", 37 | "serve": "gatsby serve", 38 | "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" 39 | }, 40 | "repository": { 41 | "type": "git", 42 | "url": "https://github.com/gatsbyjs/gatsby-starter-default" 43 | }, 44 | "bugs": { 45 | "url": "https://github.com/gatsbyjs/gatsby/issues" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/components/footer.js: -------------------------------------------------------------------------------- 1 | import React from "react" 2 | 3 | //Featured Companies 4 | import afropunk from "../images/afropunk.png" 5 | import creativeBoom from "../images/creative-boom.png" 6 | import vogue from "../images/vogue.png" 7 | import wgsn from "../images/wgsn.png" 8 | 9 | // Socials 10 | import twitter from "../images/twitter.svg" 11 | import instagram from "../images/instagram.svg" 12 | 13 | const featured = [ 14 | { name: "CreativeBoom", image: creativeBoom }, 15 | { name: "Afropunk", image: afropunk }, 16 | { name: "WGSN", image: wgsn }, 17 | { name: "Vogue", image: vogue }, 18 | ] 19 | 20 | const Footer = () => { 21 | return ( 22 | 49 | ) 50 | } 51 | 52 | export default Footer 53 | -------------------------------------------------------------------------------- /src/components/videoSection.js: -------------------------------------------------------------------------------- 1 | import React from "react" 2 | 3 | const VideoSection = () => { 4 | return ( 5 |
6 |
7 |
8 |
15 |
16 |
17 |

Let’s Talk About It Now

18 |
19 |
20 |

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 |
30 |
31 |
32 |
33 | ) 34 | } 35 | 36 | export default VideoSection 37 | -------------------------------------------------------------------------------- /src/components/banner.js: -------------------------------------------------------------------------------- 1 | import React from "react" 2 | import { useStaticQuery, graphql } from "gatsby" 3 | import Img from "gatsby-image" 4 | 5 | const Banner = () => { 6 | const data = useStaticQuery(graphql` 7 | query { 8 | poppinShades: file(relativePath: { eq: "poppin-shades.png" }) { 9 | childImageSharp { 10 | fluid(maxWidth: 300) { 11 | ...GatsbyImageSharpFluid 12 | } 13 | } 14 | } 15 | diamonds: file(relativePath: { eq: "diamonds.png" }) { 16 | childImageSharp { 17 | fluid(maxWidth: 300) { 18 | ...GatsbyImageSharpFluid 19 | } 20 | } 21 | } 22 | orange: file(relativePath: { eq: "sexy-orange.png" }) { 23 | childImageSharp { 24 | fluid(maxWidth: 300) { 25 | ...GatsbyImageSharpFluid 26 | } 27 | } 28 | } 29 | } 30 | `) 31 | return ( 32 |
33 |
34 |
35 |
36 | 37 |
38 |
Oladimeji Odunsi
39 |
40 | 41 |
42 |
43 | 44 |
45 |
46 |
47 | Scroll down 48 |
49 |
50 |
Visual Artist and Photographer
51 |
52 | ) 53 | } 54 | 55 | export default Banner 56 | -------------------------------------------------------------------------------- /src/components/aboutBlurb.js: -------------------------------------------------------------------------------- 1 | import React from "react" 2 | import { useStaticQuery, graphql } from "gatsby" 3 | import Img from "gatsby-image" 4 | import { Link } from "gatsby" 5 | 6 | const AboutBlurb = () => { 7 | const data = useStaticQuery(graphql` 8 | query { 9 | flower: file(relativePath: { eq: "flower-mouth.png" }) { 10 | childImageSharp { 11 | fluid(maxWidth: 300) { 12 | ...GatsbyImageSharpFluid 13 | } 14 | } 15 | } 16 | fist: file(relativePath: { eq: "fist.png" }) { 17 | childImageSharp { 18 | fluid(maxWidth: 300) { 19 | ...GatsbyImageSharpFluid 20 | } 21 | } 22 | } 23 | } 24 | `) 25 | return ( 26 |
27 |
28 |
29 |
30 |

The ability to create

31 |

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 |
44 | View Series 45 |
46 |
47 |
48 |
49 | 50 |
51 |
52 | 53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 | ) 61 | } 62 | 63 | export default AboutBlurb 64 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |

3 | 4 | Gatsby 5 | 6 |

7 |

8 | Gatsby's default starter 9 |

10 | 11 | Kick off your project with this default boilerplate. This starter ships with the main Gatsby configuration files you might need to get up and running blazing fast with the blazing fast app generator for React. 12 | 13 | _Have another more specific idea? You may want to check out our vibrant collection of [official and community-created starters](https://www.gatsbyjs.org/docs/gatsby-starters/)._ 14 | 15 | ## 🚀 Quick start 16 | 17 | 1. **Create a Gatsby site.** 18 | 19 | Use the Gatsby CLI to create a new site, specifying the default starter. 20 | 21 | ```shell 22 | # create a new Gatsby site using the default starter 23 | gatsby new my-default-starter https://github.com/gatsbyjs/gatsby-starter-default 24 | ``` 25 | 26 | 1. **Start developing.** 27 | 28 | Navigate into your new site’s directory and start it up. 29 | 30 | ```shell 31 | cd my-default-starter/ 32 | gatsby develop 33 | ``` 34 | 35 | 1. **Open the source code and start editing!** 36 | 37 | Your site is now running at `http://localhost:8000`! 38 | 39 | _Note: You'll also see a second link: _`http://localhost:8000/___graphql`_. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the [Gatsby tutorial](https://www.gatsbyjs.org/tutorial/part-five/#introducing-graphiql)._ 40 | 41 | Open the `my-default-starter` directory in your code editor of choice and edit `src/pages/index.js`. Save your changes and the browser will update in real time! 42 | 43 | ## 🧐 What's inside? 44 | 45 | A quick look at the top-level files and directories you'll see in a Gatsby project. 46 | 47 | . 48 | ├── node_modules 49 | ├── src 50 | ├── .gitignore 51 | ├── .prettierrc 52 | ├── gatsby-browser.js 53 | ├── gatsby-config.js 54 | ├── gatsby-node.js 55 | ├── gatsby-ssr.js 56 | ├── LICENSE 57 | ├── package-lock.json 58 | ├── package.json 59 | └── README.md 60 | 61 | 1. **`/node_modules`**: This directory contains all of the modules of code that your project depends on (npm packages) are automatically installed. 62 | 63 | 2. **`/src`**: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. `src` is a convention for “source code”. 64 | 65 | 3. **`.gitignore`**: This file tells git which files it should not track / not maintain a version history for. 66 | 67 | 4. **`.prettierrc`**: This is a configuration file for [Prettier](https://prettier.io/). Prettier is a tool to help keep the formatting of your code consistent. 68 | 69 | 5. **`gatsby-browser.js`**: This file is where Gatsby expects to find any usage of the [Gatsby browser APIs](https://www.gatsbyjs.org/docs/browser-apis/) (if any). These allow customization/extension of default Gatsby settings affecting the browser. 70 | 71 | 6. **`gatsby-config.js`**: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins you’d like to include, etc. (Check out the [config docs](https://www.gatsbyjs.org/docs/gatsby-config/) for more detail). 72 | 73 | 7. **`gatsby-node.js`**: This file is where Gatsby expects to find any usage of the [Gatsby Node APIs](https://www.gatsbyjs.org/docs/node-apis/) (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process. 74 | 75 | 8. **`gatsby-ssr.js`**: This file is where Gatsby expects to find any usage of the [Gatsby server-side rendering APIs](https://www.gatsbyjs.org/docs/ssr-apis/) (if any). These allow customization of default Gatsby settings affecting server-side rendering. 76 | 77 | 9. **`LICENSE`**: Gatsby is licensed under the MIT license. 78 | 79 | 10. **`package-lock.json`** (See `package.json` below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. **(You won’t change this file directly).** 80 | 81 | 11. **`package.json`**: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc). This manifest is how npm knows which packages to install for your project. 82 | 83 | 12. **`README.md`**: A text file containing useful reference information about your project. 84 | 85 | ## 🎓 Learning Gatsby 86 | 87 | Looking for more guidance? Full documentation for Gatsby lives [on the website](https://www.gatsbyjs.org/). Here are some places to start: 88 | 89 | - **For most developers, we recommend starting with our [in-depth tutorial for creating a site with Gatsby](https://www.gatsbyjs.org/tutorial/).** It starts with zero assumptions about your level of ability and walks through every step of the process. 90 | 91 | - **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.org/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar. 92 | 93 | ## 💫 Deploy 94 | 95 | [![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-default) 96 | 97 | 98 | -------------------------------------------------------------------------------- /src/styles/styles.scss: -------------------------------------------------------------------------------- 1 | $font: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 2 | Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; 3 | 4 | //Colors 5 | $white: #fff; 6 | $black: #000; 7 | $maroon: #83333e; 8 | $off-white: #f2f4f5; 9 | 10 | html, 11 | body { 12 | font-family: $font; 13 | font-size: 16px; 14 | padding: 0; 15 | margin: 0; 16 | background: $white; 17 | } 18 | 19 | .container { 20 | width: 1640px; 21 | min-width: 1640px; 22 | margin: 0 auto; 23 | @media (max-width: 1440px) { 24 | width: 1280px; 25 | min-width: 1280px; 26 | } 27 | @media (max-width: 1280px) { 28 | width: 976px; 29 | min-width: 976px; 30 | } 31 | @media (max-width: 976px) { 32 | width: 768px; 33 | min-width: 768px; 34 | } 35 | } 36 | 37 | //Header 38 | header { 39 | height: 80px; 40 | width: 100%; 41 | position: absolute; 42 | top: 0px; 43 | z-index: 10; 44 | .inner-header { 45 | display: flex; 46 | align-items: center; 47 | justify-content: space-between; 48 | height: 80px; 49 | .logo { 50 | a { 51 | font-weight: 700; 52 | text-decoration: none; 53 | letter-spacing: 1.5px; 54 | color: $black; 55 | } 56 | } 57 | .navigation { 58 | nav { 59 | a { 60 | margin: 0 20px; 61 | text-decoration: none; 62 | letter-spacing: 1.75px; 63 | text-transform: uppercase; 64 | font-size: 0.75rem; 65 | color: $black; 66 | &:last-child { 67 | margin-right: 0px; 68 | } 69 | } 70 | } 71 | } 72 | } 73 | } 74 | 75 | //Banner 76 | .banner { 77 | display: flex; 78 | align-items: center; 79 | background-color: $white; 80 | position: relative; 81 | height: 100vh; 82 | .row { 83 | position: relative; 84 | .main-text { 85 | font-size: 5.8rem; 86 | text-transform: uppercase; 87 | letter-spacing: 42px; 88 | font-weight: 700; 89 | color: $white; 90 | position: absolute; 91 | width: 100%; 92 | left: 0; 93 | top: 50%; 94 | transform: translateY(-50%); 95 | text-align: center; 96 | mix-blend-mode: difference; 97 | z-index: 9; 98 | @media (max-width: 1440px) { 99 | font-size: 4.4rem; 100 | letter-spacing: 36px; 101 | } 102 | } 103 | .main-image { 104 | width: 536px; 105 | margin: 0 auto; 106 | @media (max-width: 1440px) { 107 | width: 436px; 108 | } 109 | } 110 | .side-image { 111 | width: 260px; 112 | position: absolute; 113 | @media (max-width: 1440px) { 114 | width: 208px; 115 | } 116 | &.left { 117 | left: 168px; 118 | top: 12px; 119 | @media (max-width: 1440px) { 120 | left: 128px; 121 | } 122 | } 123 | &.right { 124 | right: 168px; 125 | bottom: 12px; 126 | @media (max-width: 1440px) { 127 | right: 128px; 128 | } 129 | } 130 | } 131 | } 132 | .scroll { 133 | font-weight: 700; 134 | font-size: 0.875rem; 135 | letter-spacing: 1.5px; 136 | color: $black; 137 | text-transform: uppercase; 138 | position: absolute; 139 | bottom: 48px; 140 | } 141 | .fixed-misc { 142 | position: fixed; 143 | top: 50%; 144 | right: -48px; 145 | transform: rotate(-90deg); 146 | font-weight: 700; 147 | text-transform: uppercase; 148 | font-size: 0.875rem; 149 | letter-spacing: 1.5px; 150 | color: $white; 151 | mix-blend-mode: difference; 152 | z-index: 8; 153 | @media (max-width: 1440px) { 154 | right: -112px; 155 | } 156 | } 157 | } 158 | 159 | //About blurb 160 | 161 | .about-blurb { 162 | padding: 48px 0; 163 | background: $white; 164 | position: relative; 165 | .inner-blurb { 166 | display: flex; 167 | justify-content: space-between; 168 | align-items: center; 169 | .content { 170 | width: 33%; 171 | @media (max-width: 1440px) { 172 | width: 40%; 173 | } 174 | h3 { 175 | font-weight: 700; 176 | text-transform: uppercase; 177 | font-size: 1.8rem; 178 | letter-spacing: 1.5px; 179 | margin: 0; 180 | } 181 | p { 182 | font-size: 1rem; 183 | line-height: 2rem; 184 | font-weight: 300; 185 | margin: 40px 0 72px; 186 | } 187 | .btn-row { 188 | a { 189 | font-weight: 700; 190 | font-size: 0.875rem; 191 | letter-spacing: 1.5px; 192 | color: $black; 193 | text-transform: uppercase; 194 | text-decoration: none; 195 | } 196 | } 197 | } 198 | .images { 199 | width: 50%; 200 | height: 1000px; 201 | position: relative; 202 | z-index: 7; 203 | @media (max-width: 1440px) { 204 | height: 800px; 205 | } 206 | .top-right { 207 | position: absolute; 208 | width: 460px; 209 | top: 0; 210 | right: 0; 211 | z-index: 4; 212 | @media (max-width: 1440px) { 213 | width: 360px; 214 | } 215 | } 216 | .bottom-left { 217 | position: absolute; 218 | width: 410px; 219 | left: 0; 220 | bottom: 0; 221 | @media (max-width: 1440px) { 222 | width: 310px; 223 | } 224 | } 225 | } 226 | } 227 | .black-box { 228 | background: $black; 229 | height: 418px; 230 | width: 836px; 231 | position: absolute; 232 | right: 0; 233 | top: 50%; 234 | transform: translateY(-50%); 235 | @media (max-width: 1440px) { 236 | width: 636px; 237 | height: 340px; 238 | } 239 | &.overlay { 240 | z-index: 7; 241 | background: $maroon; 242 | mix-blend-mode: overlay; 243 | } 244 | } 245 | } 246 | 247 | //video section 248 | .video-section { 249 | margin-top: 160px; 250 | .container { 251 | .video-player { 252 | width: 100%; 253 | margin: 0 auto; 254 | video { 255 | width: 100%; 256 | outline: none; 257 | } 258 | } 259 | .video-content { 260 | display: flex; 261 | justify-content: space-between; 262 | margin: 80px 0 120px; 263 | .title { 264 | width: 50%; 265 | h3 { 266 | font-weight: 700; 267 | text-transform: uppercase; 268 | font-size: 1.8rem; 269 | letter-spacing: 1.5px; 270 | margin: 0; 271 | } 272 | } 273 | .content { 274 | width: 50%; 275 | p { 276 | font-size: 1rem; 277 | line-height: 2rem; 278 | font-weight: 300; 279 | margin: 0; 280 | } 281 | } 282 | } 283 | } 284 | } 285 | 286 | //footer 287 | footer { 288 | .featured-companies { 289 | background: $black; 290 | height: 200px; 291 | display: flex; 292 | align-items: center; 293 | .container { 294 | ul { 295 | display: flex; 296 | justify-content: space-around; 297 | padding: 0; 298 | align-items: center; 299 | flex-direction: row; 300 | li { 301 | text-align: center; 302 | img { 303 | width: 50%; 304 | } 305 | } 306 | } 307 | } 308 | } 309 | .footer { 310 | background: $off-white; 311 | height: 80px; 312 | .inner { 313 | padding: 0 120px; 314 | height: 80px; 315 | display: flex; 316 | align-items: center; 317 | justify-content: space-between; 318 | .socials { 319 | a { 320 | margin: 0 8px; 321 | } 322 | } 323 | } 324 | } 325 | } 326 | --------------------------------------------------------------------------------