diff --git a/src/app/(game)/page.tsx b/src/app/(game)/page.tsx index 81daf9f..5b4cc63 100644 --- a/src/app/(game)/page.tsx +++ b/src/app/(game)/page.tsx @@ -5,6 +5,7 @@ import { Menu } from "@/components/Menu"; import { activities, type ActivityType } from "@/data/activity"; import { heading } from "@/varients/heading"; import { text } from "@/varients/text"; +import Link from "next/link"; import { useEffect, useState } from "react"; import { twMerge } from "tailwind-merge"; @@ -50,6 +51,52 @@ function Activity({ type Filter = "all" | "finished" | "unfinished"; +const menus = [ + { + name: "攤位", + description: [ +
+ 驚喜總藏身於次次交流之中,去聽聽看、玩玩看各種不同的攤位都在做些什麼吧!依照各攤位的指示完成其要求條件,並出示您的 + QR code 碼給攤位端掃描,即可獲得該攤位的拼圖獎勵。 +
, ++ 註:您可以在 OPass 系統左上角的選單中找到自己的 QR code 碼。 +
, + ], + }, + { + name: "年會活動", + description: [ ++ 邁開您的腳步,來一一踩點{" "} + + SITCON 2024 各大年會活動 + {" "} + 吧!請您在走訪各項有趣活動的過程中,找到藏身於活動地點各個角落的 QR code + 碼,並依照活動說明中的提示完成任務,即可獲得其對應之拼圖獎勵。(請尊重每位與會者的活動體驗,不得逕行翻拍) +
, + ], + }, + { + name: "Bonus", + description: [ ++ 除了攤位及年會活動,我們也準備了 Bonus 特別活動,助您加滿血量!! +
, ++ 今天,請和我們一起探險、一起玩耍、一起收穫更多驚喜 ☆ミ(o*・ω・)ノ +
, ++ {" "} + 依照各別活動說明中的提示完成任務,即可獲得其對應之拼圖獎勵。 +
, + ], + }, +]; + export default function Home() { const [active, setActive] = useState(0); const finished = [[1, 2, 5], [1, 2], [4]][active]; // TODO: useFinished('session') @@ -67,13 +114,14 @@ export default function Home() { })); const totalN = data.filter((item) => item.isFinished || !item.hide).length; - const finishedN = - data.filter((item, index) => isActivityFinished(item, index)).length; + const finishedN = data.filter((item, index) => + isActivityFinished(item, index), + ).length; return (