From 6bea534dabc0250763348c3bdc180d36701abf48 Mon Sep 17 00:00:00 2001 From: Mikayla Dobson <93477693+innocuous-symmetry@users.noreply.github.com> Date: Mon, 11 Jul 2022 10:00:15 -0500 Subject: [PATCH] style cleanup and consolidation --- src/pages/AboutMe.jsx | 14 ++--- src/pages/Projects.jsx | 6 +- src/pages/Welcome.jsx | 21 ++----- src/sass/components/_Divider.scss | 5 ++ src/sass/helper/_animations.scss | 14 +++++ src/sass/helper/_variables.scss | 9 ++- src/sass/pages/AboutMe.scss | 8 +++ src/sass/pages/Projects.scss | 96 ++++++++++++++++--------------- src/sass/pages/Welcome.scss | 85 ++++++++++++++++++--------- src/styles/Style.js | 84 +-------------------------- 10 files changed, 157 insertions(+), 185 deletions(-) create mode 100644 src/sass/components/_Divider.scss diff --git a/src/pages/AboutMe.jsx b/src/pages/AboutMe.jsx index 3be34fa..14f285c 100644 --- a/src/pages/AboutMe.jsx +++ b/src/pages/AboutMe.jsx @@ -1,34 +1,30 @@ -import { DocumentStyle, AboutMePage } from '../styles/Style'; -import { Link, useNavigate } from 'react-router-dom'; +import { DocumentStyle } from '../styles/Style'; import '../sass/pages/AboutMe.scss'; import Card from '@mui/material/Card'; const { htmlTheme } = DocumentStyle; -const { projectCards, cardDimensions } = AboutMePage; export default function AboutMe() { - const navigate = useNavigate(); - return (
I have experience building web applications with and without back-end integrations.
I am comfortable conceptualizing and organizing complex structures, and as such, my projects tend to be natural in their structure and easy to maintain.
I consult on small teams at Metazu Studio, a Nashville-based startup connecting clients with services in video production, AR/VR, social media, photography, and web design.
I have worked on projects focused on full stack web engineering, real time communications, and designing beautiful user experiences.
My background as a musician, composer, producer, and artistic @@ -37,7 +33,7 @@ export default function AboutMe() {
My projects have featured both relational and non-relational databases, in particular PostgreSQL and MongoDB. I also have experience with various methods of connecting these diff --git a/src/pages/Projects.jsx b/src/pages/Projects.jsx index 73bfd0a..f938e7e 100644 --- a/src/pages/Projects.jsx +++ b/src/pages/Projects.jsx @@ -1,10 +1,10 @@ -import { useState, useEffect, useRef, useCallback } from 'react'; +import { useState, useEffect, useRef } from 'react'; import { DocumentStyle } from '../styles/Style'; import { projectsArray } from '../components/ProjectsArray'; import { Divider } from '@mui/material'; import '../sass/pages/Projects.scss'; -const { htmlTheme, dividerStyle } = DocumentStyle; +const { htmlTheme } = DocumentStyle; const defaultFilter = { language: '', @@ -102,7 +102,7 @@ export default function Projects() {
@@ -28,9 +19,9 @@ export default function Welcome() {