1+ import { styled } from 'goober' ;
12import * as React from 'react' ;
2- import styled from 'styled-components' ;
33
44import githubLogoPath from '../../assets/images/githubLogo.svg' ;
55import logoPath from '../../assets/images/logo.svg' ;
@@ -10,34 +10,34 @@ type Props = {
1010 children : React . ReactNode ;
1111} ;
1212
13- const Container = styled . main `
13+ const Container = styled ( ' main' ) `
1414 display: flex;
1515 justify-content: center;
1616 background: var(--dark);
1717` ;
1818
19- const Wrapper = styled . div `
19+ const Wrapper = styled ( ' div' ) `
2020 width: 100%;
2121` ;
2222
23- const Body = styled . div `
23+ const Body = styled ( ' div' ) `
2424 margin-top: 2rem;
2525` ;
2626
27- const Description = styled . div `
27+ const Description = styled ( ' div' ) `
2828 font-size: 1.1rem;
2929 font-weight: 200;
3030` ;
3131
32- const Divider = styled . div `
32+ const Divider = styled ( ' div' ) `
3333 height: 2px;
3434 width: 7%;
3535 background-image: linear-gradient(48.66deg, var(--purple), var(--blue));
3636 margin: 2.5rem 0;
3737 display: flex;
3838` ;
3939
40- const TopBar = styled . header `
40+ const TopBar = styled ( ' header' ) `
4141 position: sticky;
4242 top: 0;
4343 left: 0;
@@ -52,12 +52,12 @@ const TopBar = styled.header`
5252 z-index: 1000;
5353` ;
5454
55- const Logo = styled . img `
55+ const Logo = styled ( ' img' ) `
5656 height: 3rem;
5757 width: 3rem;
5858` ;
5959
60- const GithubLogo = styled . img `
60+ const GithubLogo = styled ( ' img' ) `
6161 width: 2rem;
6262` ;
6363
0 commit comments