This file contains hidden or 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
@import '@carbon/themes/scss/themes'; | |
$carbon--theme: $carbon--theme--g100; | |
@include carbon--theme(); | |
@import 'carbon-components/scss/globals/scss/styles.scss'; | |
a { | |
color: $text-04; | |
} |
This file contains hidden or 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
import styled from 'styled-components' | |
import { white } from '@carbon/colors' | |
export const EducationItem = styled.li` | |
margin-top: 1rem; | |
padding-bottom: 1rem; | |
border-bottom: 1px solid ${white}; | |
` | |
export const Institution = styled.h4` |
This file contains hidden or 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
import React from 'react'; | |
import Layout from '../../components/Layout'; | |
import { SectionTitle, Paragraph } from '../../styles'; | |
import { EducationItem, Institution, Degree } from './styles'; | |
const Education = ({ user }) => { | |
return ( | |
<Layout user={user}> | |
<div> | |
<SectionTitle>Education</SectionTitle> |
This file contains hidden or 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
import React from 'react'; | |
import Layout from '../../components/Layout'; | |
import { SectionTitle, Paragraph } from '../../styles'; | |
import { WorkItem, WorkTitle, JobTitle } from './styles'; | |
const Work = ({ user }) => { | |
return ( | |
<Layout user={user}> | |
<div> | |
<SectionTitle>Work</SectionTitle> |
This file contains hidden or 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
import styled from 'styled-components' | |
import { white } from '@carbon/colors' | |
export const WorkItem = styled.li` | |
margin-top: 1rem; | |
padding-bottom: 1rem; | |
border-bottom: 1px solid ${white}; | |
` | |
export const WorkTitle = styled.h4` |
This file contains hidden or 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
import React from 'react'; | |
import Layout from '../../components/Layout'; | |
import { SectionTitle, Pill } from '../../styles'; | |
import { ProjectItem, ProjectTitle, SkillContainer } from './styles'; | |
const Projects = ({ user }) => { | |
return ( | |
<Layout user={user}> | |
<div> | |
<SectionTitle>Projects</SectionTitle> |
This file contains hidden or 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
import styled from 'styled-components' | |
import { white } from '@carbon/colors' | |
export const ProjectItem = styled.li` | |
margin-top: 1rem; | |
padding-bottom: 1rem; | |
border-bottom: 1px solid ${white}; | |
` | |
export const ProjectTitle = styled.h4` |
This file contains hidden or 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
import styled from 'styled-components' | |
export const ProfileLink = styled.li` | |
margin-right: 0.5rem; | |
margin-bottom: 0.5rem; | |
display: inline-block; | |
font-size: 18px; | |
` |
This file contains hidden or 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
import React from 'react'; | |
import Layout from '../../components/Layout'; | |
import { SectionTitle, Paragraph, Pill } from '../../styles'; | |
import { ProfileLink } from './styles'; | |
const Me = ({ user }) => { | |
return ( | |
<Layout user={user}> | |
<div> | |
<SectionTitle>About Me</SectionTitle> |
This file contains hidden or 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
import React from 'react'; | |
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; | |
import Me from './Me'; | |
import Projects from './Projects'; | |
import Work from './Work'; | |
import Education from './Education'; | |
const Pages = ({ user }) => { | |
return ( | |
<Router> |