Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinsoo1004 committed Nov 7, 2023
2 parents 0c098ef + f0b1e2c commit d42e30d
Show file tree
Hide file tree
Showing 106 changed files with 4,540 additions and 1,208 deletions.
27 changes: 21 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "my-app",
"version": "0.1.0",
"name": "pcot",
"version": "1.0.0",
"private": true,
"homepage": ".",
"dependencies": {
"@balkangraph/orgchart.js": "^8.13.1",
"@craco/craco": "^7.1.0",
"@gitgraph/react": "^1.6.0",
"@testing-library/jest-dom": "^5.14.1",
Expand All @@ -12,18 +13,26 @@
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-burger-menu": "^2.8.3",
"@types/react-dnd": "^3.0.2",
"@types/react-dom": "^18.0.0",
"@types/react-modal": "^3.16.1",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.4.0",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"framer-motion": "^10.16.4",
"react": "^18.2.0",
"react-burger-menu": "^3.0.9",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-google-charts": "^4.0.1",
"react-modal": "^3.16.1",
"react-icons": "^4.11.0",
"react-pro-sidebar": "^1.1.0-alpha.1",
"react-router-dom": "^6.11.2",
"react-scripts": "5.0.1",
"semantic-ui-css": "^2.5.0",
"semantic-ui-less": "^2.5.0",
"semantic-ui-react": "^2.1.4",
"styled-components": "^5.3.11",
"sweetalert2": "^11.7.10",
"typescript": "^5.0.4",
Expand Down Expand Up @@ -67,5 +76,11 @@
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.8"
}
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.js"
]
}
6 changes: 3 additions & 3 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="icon" href="%PUBLIC_URL%/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.svg" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand All @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>PCOT</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
19 changes: 19 additions & 0 deletions public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
71 changes: 71 additions & 0 deletions public/mailSuccess.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="ko">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PCOT - Success</title>
<style>
body {
display: grid;
place-items: center;
height: 100vh;
margin: 0;
background-color: #f5f5f5;
text-align: center;
}

img {
width: 200px;
height: 200px;
}

.button {
appearance: button;
backface-visibility: hidden;
background-color: #405cf5;
border-radius: 6px;
border-width: 0;
box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .1) 0 2px 5px 0, rgba(0, 0, 0, .07) 0 1px 1px 0;
box-sizing: border-box;
color: #fff;
cursor: pointer;
font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, sans-serif;
font-size: 100%;
height: 44px;
line-height: 1.15;
margin: 12px 0 0;
outline: none;
overflow: hidden;
padding: 0 25px;
position: relative;
text-align: center;
text-transform: none;
transform: translateZ(0);
transition: all .2s, box-shadow .08s ease-in;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: 100%;
}

.button:disabled {
cursor: default;
}

.button:focus {
box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
}
</style>
</head>

<body>
<div>
<img src="https://i.ibb.co/8B0rpKM/check.png" alt="check" border="0">
<h1>이메일 인증</h1>
<p>이메일 인증이 완료되었습니다.</p>
<button class="button" role="button" onclick="window.location.href='https://pcothub.com'">확인</button>
</div>
</body>

</html>
1 change: 0 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,3 @@
transform: rotate(360deg);
}
}

9 changes: 9 additions & 0 deletions src/assets/Hambuger.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/X.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/addMemberBtn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d42e30d

Please sign in to comment.