Skip to content

Commit d1cb024

Browse files
feat: introduce the Byeoril observation bureau theme
1 parent 8986ca5 commit d1cb024

6 files changed

Lines changed: 89 additions & 41 deletions

File tree

app/byeoril-ui.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ export function StatusBar() {
141141

142142
export function BottomNav({ tab, onMove }: { tab: Tab; onMove: (tab: Tab) => void }) {
143143
const items: Array<{ key: Tab; label: string }> = [
144-
{ key: "today", label: "오늘" },
145-
{ key: "collection", label: "도감" },
146-
{ key: "records", label: "기록" },
144+
{ key: "today", label: "예보" },
145+
{ key: "collection", label: "보관소" },
146+
{ key: "records", label: "관측일지" },
147147
{ key: "about", label: "내 정보" },
148148
];
149149
return (

app/globals.css

Lines changed: 28 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/layout.tsx

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,21 @@ import type { Metadata } from "next";
22
import "./globals.css";
33

44
export const metadata: Metadata = {
5-
title: "별일 — 하찮은 운세 기록소",
6-
description: "오늘의 하찮은 운세를 확인하고, 정말 일어났는지 기록해 나만의 별일 도감을 채워보세요.",
5+
metadataBase: new URL("https://byeoril-day.stevechan970427.chatgpt.site"),
6+
title: "별일 관측국 — 하찮은 일을 쓸데없이 진지하게",
7+
description: "아무 일도 아닌 일을 관측하고, 속보로 보도하고, 하찮게 시상하는 운세 기록소입니다.",
78
applicationName: "별일",
89
openGraph: {
9-
title: "별일 — 하찮은 운세 기록소",
10-
description: "대단한 일은 없었어도, 오늘의 작은 별일은 남겨두세요.",
10+
title: "별일 관측국 — 하찮은 일을 쓸데없이 진지하게",
11+
description: "오늘의 미세한 우주 개입을 예보하고, 관측하고, 속보로 남겨보세요.",
1112
type: "website",
13+
images: [{ url: "/og.png", width: 1731, height: 909, alt: "별일 관측국 — 아무 일도 아닌 일을 관측하고 보도하고 시상합니다." }],
14+
},
15+
twitter: {
16+
card: "summary_large_image",
17+
title: "별일 관측국 — 하찮은 일을 쓸데없이 진지하게",
18+
description: "오늘의 미세한 우주 개입을 예보하고, 관측하고, 속보로 남겨보세요.",
19+
images: ["/og.png"],
1220
},
1321
};
1422

0 commit comments

Comments
 (0)