Skip to content

Commit

Permalink
티켓 구매를 메인 버튼으로 변경 및 새 탭에서 열도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lego37yoon committed Jun 29, 2024
1 parent 71615b8 commit 568bb44
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/pages/[lang]/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ const t = useTranslations(lang);
<!--
<a href={`/schedules`} class="p-button--positive">{t("nav.schedules")}</a>
-->
<Button appearance="positive" disabled>{t("nav.schedules")}</Button>
<a href={`/tickets`} class="p-button">{t("home.tickets")}</a>
<a href={`/tickets`} class="p-button--positive" target="_blank">{t("home.tickets")}</a>
<a href={`/${lang}/sponsors/become-a-sponsor/`} class="p-button"
>{t("home.sponsor")}</a
>
Expand Down Expand Up @@ -84,8 +83,4 @@ const t = useTranslations(lang);
<Sponsors/>
</Shell>

<style>
button[disabled=""]{
opacity: .60;
}
</style>
<style></style>

0 comments on commit 568bb44

Please sign in to comment.