-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configuration and application skeleton, add important dependencies(ty…
…pescript, sass)
- Loading branch information
Showing
44 changed files
with
9,679 additions
and
11,586 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
$dark-grey: #2D3032; | ||
$dark-grey75: #626465; | ||
$dark-grey50: #969899; | ||
$dark-grey25: #CBCBCC; | ||
$white: #FFF; | ||
$light-grey: #F9F9F9; | ||
|
||
$purple: #9615DB; | ||
$purple75: #B050E4; | ||
$purple50: #E5C5F6; | ||
$purple25: #F9F1FD; | ||
|
||
$error: #EB5467; | ||
$success: #48CFAE; | ||
$info: #4FC0E8; | ||
$warning: #F6BB43; | ||
|
||
$light-green: #D1F3EB; | ||
$light-red: #FAD4D9; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.app { | ||
width: 100%; | ||
min-height: 100vh; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import logo from '../../assets/images/logo.svg'; | ||
import './index.scss'; | ||
|
||
function App() { | ||
return ( | ||
<div className="app"> | ||
<header className="app__header"> | ||
<img src={logo} className="app__logo" alt="logo" /> | ||
</header> | ||
<main></main> | ||
<footer className="app__footer"> | ||
<section className="main__footer-socials"></section> | ||
</footer> | ||
</div> | ||
); | ||
} | ||
|
||
export default App; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
@import "assets/styles/colors"; | ||
|
||
@font-face { | ||
font-family: 'Karla'; | ||
font-style: normal; | ||
font-weight: normal; | ||
src: url("assets/fonts/Karla-Regular.ttf"); | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: 'SairaSemiCondensed'; | ||
font-style: normal; | ||
font-weight: 600; | ||
src: url("assets/fonts/SairaSemiCondensed-SemiBold.ttf"); | ||
font-display: swap; | ||
} | ||
|
||
html { | ||
font-size: 10px; | ||
} | ||
|
||
html, | ||
body { | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
*, | ||
::before, | ||
::after { | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: Karla, 'Open Sans', sans-serif; | ||
font-size: 16px; | ||
line-height: 20px; | ||
color: $dark-grey; | ||
background-color: $light-grey; | ||
} | ||
|
||
h1 { | ||
font-family: SairaSemiCondensed, 'Open Sans', sans-serif; | ||
display: block; | ||
padding: 0; | ||
margin-block-start: 0; | ||
margin-block-end: 0; | ||
color: $dark-grey; | ||
text-align: left; | ||
} | ||
|
||
h2 { | ||
font-family: SairaSemiCondensed, 'Open Sans', sans-serif; | ||
padding: 0; | ||
margin: 0; | ||
font-size: 24px; | ||
color: $dark-grey; | ||
font-weight: 600; | ||
margin-block-start: 0; | ||
margin-block-end: 0; | ||
} | ||
|
||
h3 { | ||
font-family: SairaSemiCondensed, 'Open Sans', sans-serif; | ||
margin-block-start: 0; | ||
margin-block-end: 0; | ||
color: $dark-grey50; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
cursor: pointer; | ||
color: $dark-grey; | ||
} | ||
|
||
a, | ||
a:hover { | ||
-webkit-transition: all 0.4s ease-in-out; | ||
-moz-transition: all 0.4s ease-in-out; | ||
transition: all 0.4s ease-in-out; | ||
} | ||
|
||
p { | ||
margin: 0; | ||
color: $dark-grey; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from 'react'; | ||
import ReactDOM from 'react-dom'; | ||
import App from './components/App'; | ||
import "./index.scss" | ||
|
||
ReactDOM.render( | ||
<React.StrictMode> | ||
<App /> | ||
</React.StrictMode>, | ||
document.getElementById('root') | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/// <reference types="react-scripts" /> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": [ | ||
"dom", | ||
"dom.iterable", | ||
"esnext" | ||
], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"strict": true, | ||
"alwaysStrict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"noEmit": true, | ||
"jsx": "react-jsx", | ||
"noFallthroughCasesInSwitch": true, | ||
"useUnknownInCatchVariables": false | ||
}, | ||
"include": [ | ||
"src" | ||
] | ||
} | ||
|
Oops, something went wrong.