Skip to content

Commit 8515358

Browse files
Use #closerintime as app name in manifest and metadata
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b16f705 commit 8515358

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "closerintime",
3-
"short_name": "closerintime",
2+
"name": "#closerintime",
3+
"short_name": "#closerintime",
44
"description": "Visualize the time between historical events.",
55
"start_url": "/",
66
"display": "standalone",

src/app/[...ids]/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface PageProps {
1717
export async function generateMetadata({ params }: PageProps): Promise<Metadata> {
1818
const { ids: rawIds } = await params;
1919
const parsed = parseSegments(rawIds);
20-
if (!parsed) return { title: "closerintime" };
20+
if (!parsed) return { title: "#closerintime" };
2121

2222
let serverEvents: Event[] = [];
2323
try {
@@ -28,10 +28,10 @@ export async function generateMetadata({ params }: PageProps): Promise<Metadata>
2828
// Offline — metadata will use defaults
2929
}
3030
const allEvents = [...serverEvents, ...parsed.customEvents];
31-
if (allEvents.length === 0) return { title: "closerintime" };
31+
if (allEvents.length === 0) return { title: "#closerintime" };
3232

3333
const sentence = generateSentence(allEvents);
34-
const title = sentence || "closerintime";
34+
const title = sentence || "#closerintime";
3535
const ogTitle = sentence ? `${sentence} #closerintime` : "#closerintime";
3636
const description = "Visualize the time between historical events.";
3737
const ogImage = `/api/og?ids=${rawIds.join(",")}`;

src/app/admin/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import AdminShell from "@/components/Admin/AdminShell";
22

33
export const metadata = {
4-
title: "Admin - closerintime",
4+
title: "Admin - #closerintime",
55
robots: { index: false, follow: false },
66
};
77

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const metadata: Metadata = {
2525
openGraph: {
2626
title: "#closerintime",
2727
description: "Visualize the time between historical events.",
28-
siteName: "closerintime",
28+
siteName: "#closerintime",
2929
images: [{ url: "/closerintime-sharing.png", width: 1200, height: 630 }],
3030
},
3131
twitter: {

0 commit comments

Comments
 (0)