Skip to content

Commit

Permalink
fix: remove temporary code
Browse files Browse the repository at this point in the history
  • Loading branch information
kcwww committed Apr 21, 2024
1 parent 2c4fb34 commit 9a6b266
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 21 deletions.
8 changes: 0 additions & 8 deletions front/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,6 @@
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<!-- font preload -->
<!-- <link
rel="preload"
href="/fonts/KingSejongInstitue-Regular.woff2"
as="font"
type="font/woff2"
crossorigin
/> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="스노우볼 속 내 마음" />
<meta property="og:url" content="https://mysnowball.kr" />
Expand Down
26 changes: 13 additions & 13 deletions front/src/pages/Intro/Intro.tsx
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
import { useEffect } from 'react';
import { useCookies } from 'react-cookie';
import { useSetRecoilState } from 'recoil';
// import styled from 'styled-components';
import styled from 'styled-components';
import { useNav } from '@hooks';
import { Message, MessageListRecoil } from '@states';
import { SnowGlobeCanvas, UIContainer } from '@components';
import mockData from '@mock';
import IntroButtonBox from './IntroButtonBox';
import MsgBox from './MsgBox';

// const TitleDiv = styled.div`
// display: flex;
// flex-direction: column;
// justify-content: center;
// width: 100%;
// height: 10rem;
// text-align: center;
// color: ${props => props.theme.colors['--primary-yellow']};
// font: ${props => props.theme.font['--normal-title-font']};
// `;
const TitleDiv = styled.div`
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
height: 10rem;
text-align: center;
color: ${props => props.theme.colors['--primary-yellow']};
font: ${props => props.theme.font['--normal-title-font']};
`;

const Intro = () => {
const navigate = useNav();
Expand All @@ -34,9 +34,9 @@ const Intro = () => {
<>
<SnowGlobeCanvas snowBallData={mockData.snowball_data} />
<UIContainer>
{/* <TitleDiv>
<TitleDiv>
<span>스노우볼 속 내 마음</span>
</TitleDiv> */}
</TitleDiv>
<MsgBox />
<IntroButtonBox />
</UIContainer>
Expand Down

0 comments on commit 9a6b266

Please sign in to comment.