Skip to content

Commit ffab4a1

Browse files
author
Hoa Dang DNA PC
committed
Clean old public assets and refresh site icons
1 parent c1903f4 commit ffab4a1

File tree

6 files changed

+29
-1
lines changed

6 files changed

+29
-1
lines changed

web/public/apple-touch-icon.png

7.3 KB
Loading

web/public/favicon.ico

-1.3 KB
Binary file not shown.

web/public/images/claudekit.png

-2.43 KB
Binary file not shown.

web/public/images/logo.png

-64.7 KB
Binary file not shown.

web/public/images/ux-ui-pro-max.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

web/src/app/layout.tsx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import type { Metadata, Viewport } from "next";
22
import "./globals.css";
33
import { ThemeProvider } from "@/components/theme-provider";
44

5+
const siteUrl = process.env.NEXT_PUBLIC_SITE_URL ?? "http://localhost:3000";
6+
57
export const viewport: Viewport = {
68
themeColor: [
79
{ media: "(prefers-color-scheme: light)", color: "#faf2e5" },
@@ -12,12 +14,21 @@ export const viewport: Viewport = {
1214
};
1315

1416
export const metadata: Metadata = {
17+
metadataBase: new URL(siteUrl),
1518
title: {
1619
default: "CodexKit",
1720
template: "%s | CodexKit",
1821
},
1922
description:
2023
"Open-source operating kit for OpenAI Codex and ChatGPT workflows: skills, playbooks, automations, and MCP onboarding.",
24+
icons: {
25+
icon: [
26+
{ url: "/favicon.ico", sizes: "any" },
27+
{ url: "/icon.svg", type: "image/svg+xml" },
28+
],
29+
shortcut: "/favicon.ico",
30+
apple: "/apple-touch-icon.png",
31+
},
2132
robots: {
2233
index: true,
2334
follow: true,
@@ -26,6 +37,24 @@ export const metadata: Metadata = {
2637
type: "website",
2738
locale: "en_US",
2839
siteName: "CodexKit",
40+
title: "CodexKit",
41+
description:
42+
"Open-source operating kit for OpenAI Codex and ChatGPT workflows: skills, templates, workspaces, playbooks, automations, and MCP onboarding.",
43+
images: [
44+
{
45+
url: "/images/codexkit-logo.png",
46+
width: 1600,
47+
height: 467,
48+
alt: "CodexKit",
49+
},
50+
],
51+
},
52+
twitter: {
53+
card: "summary_large_image",
54+
title: "CodexKit",
55+
description:
56+
"Open-source operating kit for OpenAI Codex and ChatGPT workflows: skills, templates, workspaces, playbooks, automations, and MCP onboarding.",
57+
images: ["/images/codexkit-logo.png"],
2958
},
3059
};
3160

0 commit comments

Comments
 (0)