File tree Expand file tree Collapse file tree
apps/ticket/src/app/(pages)/event/[eventId]
_clientBoundary/TimeTableClient
site-map/_clientBoundary/SiteMapClient Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import Link from "next/link" ;
22import classNames from "classnames/bind" ;
33
4- import { Button , Typography } from "@permit/design-system" ;
4+ import { Button , Flex , Typography } from "@permit/design-system" ;
55
66import styles from "./index.module.scss" ;
77
@@ -19,9 +19,14 @@ export const TitleSection = ({ eventName, eventId }: Props) => {
1919 { eventName }
2020 </ Typography >
2121
22- < Button asChild className = { cx ( "time_table_button" ) } variant = "secondary" size = "sm" >
23- < Link href = { `/event/${ eventId } /time-table` } > TIME TABLE</ Link >
24- </ Button >
22+ < Flex gap = { 8 } >
23+ < Button asChild className = { cx ( "time_table_button" ) } variant = "secondary" size = "sm" >
24+ < Link href = { `/event/${ eventId } /time-table` } > Timetable</ Link >
25+ </ Button >
26+ < Button asChild className = { cx ( "time_table_button" ) } variant = "secondary" size = "sm" >
27+ < Link href = { `/event/${ eventId } /time-table/site-map` } > Sitemap</ Link >
28+ </ Button >
29+ </ Flex >
2530 </ div >
2631 ) ;
2732} ;
Original file line number Diff line number Diff line change @@ -179,13 +179,13 @@ export const TimeTableClient = ({ eventId }: Props) => {
179179 variant = "secondary"
180180 onClick = { ( ) => router . push ( `/event/${ eventId } /time-table` ) }
181181 >
182- { "TIME TABLE " }
182+ { "Timetable " }
183183 </ Button >
184184 < Button
185185 variant = "secondary"
186186 onClick = { ( ) => router . push ( `/event/${ eventId } /time-table/site-map` ) }
187187 >
188- { "SITE MAP " }
188+ { "Sitemap " }
189189 </ Button >
190190 </ Flex >
191191
Original file line number Diff line number Diff line change @@ -43,13 +43,13 @@ export const SiteMapClient = ({ eventId }: Props) => {
4343 variant = "secondary"
4444 onClick = { ( ) => router . push ( `/event/${ eventId } /time-table` ) }
4545 >
46- { "TIME TABLE " }
46+ { "Timetable " }
4747 </ Button >
4848 < Button
4949 variant = "secondary"
5050 onClick = { ( ) => router . push ( `/event/${ eventId } /time-table/site-map` ) }
5151 >
52- { "SITE MAP " }
52+ { "Sitemap " }
5353 </ Button >
5454 </ Flex >
5555 </ Flex >
You can’t perform that action at this time.
0 commit comments