Skip to content

Commit 288f3dc

Browse files
authored
Merge pull request #91 from PERMIT-SEOUL/develop
12/8 운영배포
2 parents b421d41 + 3a07f07 commit 288f3dc

File tree

122 files changed

+7261
-699
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+7261
-699
lines changed

apps/ticket-admin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@tanstack/react-query-devtools": "^5.80.10",
1616
"axios": "^1.10.0",
1717
"classnames": "^2.5.1",
18-
"next": "15.3.3",
18+
"next": "15.3.6",
1919
"react": "^19.0.0",
2020
"react-dom": "^19.0.0"
2121
},

apps/ticket-admin/src/app/page.module.scss renamed to apps/ticket-admin/src/app/_clientBoundary/HomeClient/index.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
.title {
1313
margin-bottom: 1rem;
1414

15-
color: #333;
15+
color: #fff;
1616
font-weight: bold;
1717
font-size: 3rem;
1818
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
"use client";
2+
3+
import Link from "next/link";
4+
import classNames from "classnames/bind";
5+
6+
import { useEventsListQuery } from "@/data/admin/getEvents/queries";
7+
import { LoadingWithLayout } from "@/shared/components/LoadingWithLayout";
8+
9+
import styles from "./index.module.scss";
10+
11+
const cx = classNames.bind(styles);
12+
13+
export const HomeClient = () => {
14+
const { isLoading } = useEventsListQuery({});
15+
16+
if (isLoading) {
17+
return <LoadingWithLayout />;
18+
}
19+
20+
return (
21+
<div className={cx("container")}>
22+
<h1 className={cx("title")}>Ticket Admin</h1>
23+
<p className={cx("description")}>티켓 관리자 대시보드에 오신 것을 환영합니다.</p>
24+
<div className={cx("links")}>
25+
<Link href="/events" className={cx("link")}>
26+
이벤트 관리
27+
</Link>
28+
<Link href="/guests" className={cx("link")}>
29+
게스트 관리
30+
</Link>
31+
</div>
32+
</div>
33+
);
34+
};
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
@use "@permit/design-system/styles/variables" as theme;
2+
@use "@permit/design-system/styles/typography" as typography;
3+
4+
.header {
5+
max-width: 1200px;
6+
margin: 0 auto;
7+
padding-top: 24px;
8+
}
9+
10+
.container {
11+
display: flex;
12+
max-width: 1200px;
13+
min-height: 100vh;
14+
margin: 0 auto;
15+
}
16+
17+
.floating {
18+
position: fixed;
19+
right: 0;
20+
bottom: 0;
21+
left: 0;
22+
23+
background-color: theme.$gray-800;
24+
box-shadow: 0 -15px 25px 0 rgb(0 0 0 / 60%);
25+
border-top: 1px solid theme.$gray-600;
26+
}
27+
28+
.floating_content {
29+
display: flex;
30+
justify-content: flex-end;
31+
max-width: 1200px;
32+
margin: 0 auto;
33+
padding: 12px 0;
34+
}
35+
36+
.button {
37+
padding: 0 100px;
38+
39+
@include typography.body-bold-14;
40+
}

0 commit comments

Comments
 (0)