-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
08053a9
commit 1fbef51
Showing
22 changed files
with
178 additions
and
161 deletions.
There are no files selected for viewing
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.
File renamed without changes.
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,30 @@ | ||
import {Routes, Route} from 'react-router-dom'; | ||
import Nav from '../Nav/Nav'; | ||
import Home from '../Home/Home'; | ||
import About from '../About/About'; | ||
import Contact from '../Contact/Contact'; | ||
import Portfolio from '../Portfolio/Portfolio'; | ||
import Footer from '../Footer/Footer'; | ||
|
||
const App = () => { | ||
return ( | ||
<> | ||
<Nav /> | ||
<main> | ||
<Routes> | ||
<Route | ||
path='/' | ||
element={<Home />} | ||
/> | ||
<Route | ||
path='/about' | ||
/> | ||
|
||
</Routes> | ||
</main> | ||
<Footer /> | ||
</> | ||
) | ||
} | ||
|
||
export default App; |
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,66 @@ | ||
@use '../../styles/variables' as *; | ||
@use '../../styles/mixins' as *; | ||
|
||
* { | ||
// border: 1px solid red; | ||
} | ||
|
||
html, | ||
body, | ||
.root, | ||
.page { | ||
margin: 0; | ||
min-height: 100vh; | ||
} | ||
|
||
html { | ||
background: linear-gradient(180deg, #D4A29C 0%, #EDCC8B 50%, #B6D8D3 100%); | ||
font-size: 62.5%; | ||
} | ||
|
||
h1, h2 { | ||
font-family: v.$header-font; | ||
} | ||
|
||
h2 { | ||
font-size: 6rem; | ||
margin: 1rem 0; | ||
align-self: center; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
button, | ||
p { | ||
color: v.$text-color; | ||
text-shadow: v.$shadow; | ||
} | ||
|
||
h3 { | ||
font-family: v.$header-font; | ||
font-size: 3rem; | ||
} | ||
|
||
button, | ||
p { | ||
font-size: 3rem; | ||
} | ||
|
||
p { | ||
font-family: v.$body-font; | ||
margin: 0; | ||
} | ||
|
||
.page { | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
.page__box { | ||
width: 100%; | ||
height: 100vh; | ||
display: flex; | ||
@include m.true-center; | ||
background-color: v.$content-box; | ||
} |
File renamed without changes.
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,3 @@ | ||
.footer { | ||
height: 10rem; | ||
} |
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 |
---|---|---|
@@ -1,19 +1,17 @@ | ||
import headshot from '../assets/headshot.jpg' | ||
|
||
const Landing = () => { | ||
const Home = () => { | ||
return ( | ||
<div id='landing' className='page landing'> | ||
<section className='page__box'> | ||
<div className='landing__text'> | ||
<p>Hi, my name is</p> | ||
<h3 className='landing__header'>Hello and welcome to SoaeSpace! 🌻</h3> | ||
<p>My name is</p> | ||
<h2>Rachel Soae Prather</h2> | ||
<p>I’m a Software Developer specializing in front end technologies including React, JavaScript, and Sass</p> | ||
<button className='landing__button'>View My Work</button> | ||
</div> | ||
<img className='landing__img' src={headshot} /> | ||
</section> | ||
</div> | ||
) | ||
} | ||
|
||
export default Landing; | ||
export default Home; |
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 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 @@ | ||
import {Link} from 'react-router-dom'; | ||
|
||
const Nav = () => { | ||
return ( | ||
<nav> | ||
|
||
<Link to='#' className='nav__text nav__header'> | ||
<h1>🌻 SoaeSpace</h1> | ||
</Link> | ||
<div className='nav__buttons'> | ||
<Link to='/#projects' className='nav__text nav__button'>Portfolio</Link> | ||
<Link to='/#about' className='nav__text nav__button'>About</Link> | ||
<Link to='/#contact' className='nav__text nav__button'>Contact</Link> | ||
</div> | ||
</nav> | ||
) | ||
} | ||
|
||
export default Nav; |
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
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
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 |
---|---|---|
@@ -1,4 +1,12 @@ | ||
@use 'variables' as v; | ||
|
||
@mixin true-center { | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
@mixin button { | ||
font-family: v.$button-font; | ||
background: 0%; | ||
padding: 0.5em 1em; | ||
} |
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 |
---|---|---|
@@ -1,78 +1,8 @@ | ||
@use 'variables' as v; | ||
@use 'mixins' as m; | ||
@use 'landing'; | ||
@use 'nav'; | ||
|
||
* { | ||
// border: 1px solid red; | ||
} | ||
|
||
html, | ||
body, | ||
.root, | ||
.page { | ||
margin: 0; | ||
min-height: 100vh; | ||
} | ||
|
||
html { | ||
background: linear-gradient(180deg, #D4A29C 0%, #EDCC8B 50%, #B6D8D3 100%); | ||
font-size: 62.5%; | ||
} | ||
|
||
h1, h2 { | ||
font-family: v.$header-font; | ||
} | ||
|
||
h2 { | ||
font-size: 8rem; | ||
margin: 1rem 0; | ||
align-self: center; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
button, | ||
p { | ||
color: v.$text-color; | ||
text-shadow: v.$shadow; | ||
} | ||
|
||
button { | ||
font-family: v.$button-font; | ||
} | ||
|
||
p { | ||
font-family: v.$body-font; | ||
margin: 0; | ||
} | ||
|
||
button, | ||
p { | ||
font-size: 3rem; | ||
} | ||
|
||
button { | ||
background: 0%; | ||
padding: 0.5em 1em; | ||
} | ||
|
||
.page { | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
.page__box { | ||
width: 100%; | ||
height: 60vh; | ||
display: flex; | ||
@include m.true-center; | ||
background-color: v.$content-box; | ||
} | ||
|
||
h3 { | ||
font-family: v.$header-font; | ||
font-size: 4rem; | ||
} | ||
|
||
@use './variables' as *; | ||
@use './mixins' as *; | ||
@use '../components/About/About'; | ||
@use '../components/App/App'; | ||
@use '../components/Contact/Contact'; | ||
@use '../components/Home/Home'; | ||
@use '../components/Nav/Nav'; | ||
@use '../components/Portfolio/Portfolio'; |
Oops, something went wrong.