Skip to content

Commit

Permalink
Edit ticket type list page header
Browse files Browse the repository at this point in the history
  • Loading branch information
emscb committed Jul 16, 2023
1 parent b48c519 commit c4ffb83
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pages/ticket/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Button from '@/components/common/Button';
import { useSetRecoilState } from 'recoil';
import { ticketState } from '@/stores/ticket';
import { TicketAPI } from '@/api';
import SeoHeader from '@/components/layout/SeoHeader';

const TicketPage = () => {
const router = useRouter();
Expand All @@ -31,7 +32,7 @@ const TicketPage = () => {
>(() => {
return {
CONFERENCE: {
name: '컨퍼런스 티켓',
name: '컨퍼런스',
desc: '8월 12일, 13일 파이콘 한국 2023 컨퍼런스에 참가할 수 있는 티켓입니다.',
},
TUTORIAL: {
Expand Down Expand Up @@ -78,6 +79,10 @@ const TicketPage = () => {

return (
<>
<SeoHeader
title={Routes.TICKET.title}
description="파이콘 한국 2023: 8월 11~13일 코엑스"
/>
{ProgramTypes.map((programType) => (
<S.ProgramTypeSection key={programType}>
<S.ProgramTypeTitle>
Expand Down

0 comments on commit c4ffb83

Please sign in to comment.