more work on visual design

This commit is contained in:
Mikayla Dobson
2022-04-04 13:42:17 -05:00
parent 4402a361f6
commit 17296aefdc
3 changed files with 34 additions and 23 deletions

View File

@@ -9,15 +9,24 @@ import './App.scss';
function App() {
return (
<div className="App">
<BrowserRouter>
<Routes>
<Route path='/' element={<Welcome />} />
<Route path='/projects' element={<Projects />} />
<Route path='/in-progress' element={<InProgress />} />
<Route path='/technologies' element={<Technologies />} />
<Route path='/links' element={<Links />} />
</Routes>
</BrowserRouter>
<header>
<h2 className="my-name">Mikayla Dobson</h2>
<h2>Web Design Contractor</h2>
</header>
<main>
<BrowserRouter>
<Routes>
<Route path='/' element={<Welcome />} />
<Route path='/projects' element={<Projects />} />
<Route path='/in-progress' element={<InProgress />} />
<Route path='/technologies' element={<Technologies />} />
<Route path='/links' element={<Links />} />
</Routes>
</BrowserRouter>
</main>
</div>
);
}

View File

@@ -1,28 +1,33 @@
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
$pink50: #fce4ec;
$purple200: #ce93d8;
.App {
text-align: center;
}
.welcome-page {
}
.welcome-header {
header {
background-color: $purple200;
display: flex;
align-items: flex-end;
border-bottom: 1px solid black;
font-family: 'Open Sans', sans-serif;
h1 {
font-size: 2.4rem;
.my-name {
font-weight: 900;
border-right: 1px solid black;
padding-right: 1rem;
}
h2 {
font-weight: 400;
position: relative;
bottom: 0.8rem;
padding-left: 1rem;
}
}
.landing {
padding-top: 1.5rem;
display: flex;
flex-direction: column;
align-items: center;

View File

@@ -1,3 +1,5 @@
import '../App.scss';
import Paper from '@mui/material/Paper';
import Avatar from '@mui/material/Avatar';
import Button from '@mui/material/Button';
@@ -14,13 +16,8 @@ const { themeA } = colorThemes;
export default function Welcome() {
return (
<div style={pageTheme}>
<header className="welcome-header">
<h1>Mikayla Dobson</h1>
<h2>Web Design Contractor</h2>
</header>
<div className="landing">
<Avatar alt="Mikayla Dobson" src={profile} sx={{width: 100, height: 100}} />
<Avatar alt="Mikayla Dobson" src={profile} sx={{width: 110, height: 110}} />
<h3>Hi, my name is Mikayla! I'm a junior-level full stack web developer.</h3>
<p>I excel in building well-structured and maintainable web applications, managing algorithmic complexity, and adapting my workflow to fit the needs of any environment I should find myself in.</p>
</div>