27 lines
1016 B
TypeScript
27 lines
1016 B
TypeScript
import type { Metadata } from "next";
|
|
import Hero from "@/components/Hero";
|
|
import Footer from "@/components/Footer";
|
|
|
|
// L3. 리더보드 — 차기(금요일 제외). 진입점 404 방지용 stub.
|
|
export const metadata: Metadata = {
|
|
title: "랭킹 | TriplePick 2026",
|
|
description: "TriplePick 누적 랭킹 — 곧 공개됩니다.",
|
|
};
|
|
|
|
export default function LeaderboardPage() {
|
|
return (
|
|
<main className="shell">
|
|
<Hero back />
|
|
<section className="mt-10 rounded-2xl border border-[var(--line-d)] bg-[var(--bg2)] p-8 text-center">
|
|
<div className="font-impact text-[28px] text-[var(--green)]">LEADERBOARD</div>
|
|
<p className="mt-3 text-[15px] font-bold">랭킹은 곧 공개됩니다</p>
|
|
<p className="mt-2 text-[13px] leading-relaxed text-[var(--ink-muted)]">
|
|
매 경기 누적 점수로 순위를 매기고, 끝까지 가장 잘 맞힌 한 분께
|
|
최종 100만원을 드립니다.
|
|
</p>
|
|
</section>
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|