Skip to content

Commit 6439794

Browse files
toy-craneclaude
andauthored
feat: add SVG favicon and OG metadata (#23)
* feat: add {f} SVG favicon and OG metadata Replace default Next.js favicon with custom {f} monospace icon in rounded square. Add OpenGraph and Twitter card metadata for link sharing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: update metadata description to match homepage copy Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: update title to "Feedme - 어떤 URL이든, Markdown으로." and capitalize service name Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: shorten title to just "Feedme", keep tagline in description only Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: update og:url to feedme.wiki Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 75a5088 commit 6439794

3 files changed

Lines changed: 19 additions & 2 deletions

File tree

app/favicon.ico

-25.3 KB
Binary file not shown.

app/icon.svg

Lines changed: 4 additions & 0 deletions
Loading

app/layout.tsx

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,21 @@ import "./globals.css";
77
const inter = Inter({ subsets: ["latin"], variable: "--font-sans" });
88

99
export const metadata: Metadata = {
10-
title: "feedme",
11-
description: "URL을 입력하면 웹페이지나 YouTube 자막을 마크다운으로 추출합니다",
10+
title: "Feedme",
11+
description: "어떤 URL이든, Markdown으로.",
12+
openGraph: {
13+
title: "Feedme",
14+
description: "어떤 URL이든, Markdown으로.",
15+
url: "https://feedme.wiki",
16+
siteName: "Feedme",
17+
type: "website",
18+
locale: "ko_KR",
19+
},
20+
twitter: {
21+
card: "summary",
22+
title: "Feedme",
23+
description: "어떤 URL이든, Markdown으로.",
24+
},
1225
};
1326

1427
export default function RootLayout({

0 commit comments

Comments
 (0)