Compare commits

...

3 Commits

5 changed files with 232 additions and 16277 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,8 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@testing-library/jest-dom": "^5.16.2", "@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4", "@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0", "@testing-library/user-event": "^13.5.0",

View File

@ -1,5 +0,0 @@
.container {
font-family: 'Segoe UI', 'Helvetica', sans-serif;
font-size: 16px;
color: #5c5a5a;
}

View File

@ -1,11 +1,20 @@
/** @jsxImportSource @emotion/react */
import { css } from '@emotion/react';
import React from 'react'; import React from 'react';
import { Header } from './Header'; import { Header } from './Header';
import style from './App.module.css';
import { HomePage } from './HomePage'; import { HomePage } from './HomePage';
import { fontFamily, fontSize, gray2 } from './Styles';
function App() { function App() {
return ( return (
<div className={style.container}> <div
css={css`
font-family: ${fontFamily};
font-size: ${fontSize};
color: ${gray2};
`}
>
<Header /> <Header />
<HomePage /> <HomePage />
</div> </div>

View File

@ -0,0 +1,12 @@
export const gray1 = '#383737';
export const gray2 = '#5c5a5a';
export const gray3 = '#857c81';
export const gray4 = '#b9b9b9';
export const gray5 = '#e3e2e2';
export const gray6 = '#f7f8fa';
export const primary1 = '#681c41';
export const primary2 = '#824c67';
export const accent1 = '#dbb365';
export const accent2 = '#efd197';
export const fontFamily = "'Segoe UI', 'Helvetica Neue',sans-serif";
export const fontSize = '16px';