Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions env.development

This file was deleted.

3 changes: 0 additions & 3 deletions env.production

This file was deleted.

1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/src/styles/global.css" />
<link rel="stylesheet" href="/src/styles/colors.css" />
<link rel="stylesheet" href="/src/styles/style.css" />
<link
rel="stylesheet"
as="style"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"react-router-dom": "^7.8.0",
"styled-components": "^6.1.19"
},
"devDepenpmndencies": {
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
Expand Down
Binary file removed src/assets/ld-emoji2.png
Binary file not shown.
Binary file removed src/assets/ld-emoji23.png
Binary file not shown.
Binary file removed src/assets/ld-emoji3.png
Binary file not shown.
Binary file removed src/assets/ld-emoji4.png
Binary file not shown.
Binary file removed src/assets/ld-ic-man.png
Binary file not shown.
Binary file removed src/assets/ld-point01.png
Binary file not shown.
Binary file removed src/assets/ld-point02.png
Binary file not shown.
26 changes: 12 additions & 14 deletions src/pages/main-page.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import React from 'react';
import Header from '../components/header/header';
import emojiImg from '../assets/ld-emoji.png';
import cardImg1 from '../assets/ld-img01.png';
import cardImg2 from '../assets/ld-img02.png';
import cardImg3 from '../assets/ld-img03.png';
import styled from 'styled-components';
import { Link } from 'react-router-dom';
import { Link } from "react-router-dom";
import styled from "styled-components";
import emojiImg from "../assets/ld-emoji.png";
import cardImg1 from "../assets/ld-img01.png";
import cardImg2 from "../assets/ld-img02.png";
import cardImg3 from "../assets/ld-img03.png";

const Content = styled.div`
width: 100%;
Expand Down Expand Up @@ -123,7 +121,7 @@ function MainPage() {
<ContentDetail>
<CardContainer>
<div className="CardContainerText">
<div style={{ margin: '0px', display: 'flex', gap: '0px' }}>
<div style={{ margin: "0px", display: "flex", gap: "0px" }}>
<PointBadge>Point. 01</PointBadge>
</div>
<h2>누구나 손쉽게, 온라인 롤링페이퍼를 만들 수 있어요</h2>
Expand All @@ -141,7 +139,7 @@ function MainPage() {
<img src={emojiImg} alt="올이모지" />
</div>
<div className="EmojiContainerText">
<div style={{ margin: '0px', display: 'flex', gap: '0px' }}>
<div style={{ margin: "0px", display: "flex", gap: "0px" }}>
<PointBadge>Point. 02</PointBadge>
</div>
<h2>서로에게 이모지로 감정을 표현해보세요</h2>
Expand All @@ -153,10 +151,10 @@ function MainPage() {
<div
className="Footer"
style={{
textAlign: 'center',
marginTop: '20px',
padding: '20px',
backgroundColor: '#ffffff',
textAlign: "center",
marginTop: "20px",
padding: "20px",
backgroundColor: "#ffffff",
}}
>
<Link to="/list">
Expand Down
Loading