Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions apps/marketing/public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "T3 Code",
"short_name": "T3 Code",
"description": "The open-source control plane for coding agents.",
"start_url": "/",
"display": "standalone",
"background_color": "#09090b",
"theme_color": "#09090b",
"icons": [
{
"src": "/favicon-16x16.png",
"sizes": "16x16",
"type": "image/png"
},
{
"src": "/favicon-32x32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "/apple-touch-icon.png",
"sizes": "180x180",
"type": "image/png"
},
{
"src": "/icon.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
10 changes: 9 additions & 1 deletion apps/marketing/src/layouts/Layout.astro
Comment thread
macroscopeapp[bot] marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ const {
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bottom safe area not handled

Medium Severity

Adding viewport-fit=cover makes the layout extend into the device’s unsafe regions, but only .nav gets env(safe-area-inset-top). The shared .footer still uses fixed bottom padding, so footer links can sit under the home indicator in standalone iPadOS/iOS after Add to Home Screen.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 7aed8a2. Configure here.

<meta name="description" content={description} />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
Expand All @@ -27,6 +30,10 @@ const {
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
Comment thread
cursor[bot] marked this conversation as resolved.
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="T3 Code" />
<title>{title}</title>
</head>
<body>
Expand Down Expand Up @@ -285,6 +292,7 @@ const {
.nav {
position: sticky;
top: 0;
padding-top: env(safe-area-inset-top, 0px);
z-index: 50;
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
Expand Down
4 changes: 4 additions & 0 deletions apps/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
<meta name="theme-color" content="#161616" />
<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="T3 Code" />
<script>
(() => {
const LIGHT_BACKGROUND = "#ffffff";
Expand Down
Binary file added apps/web/public/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions apps/web/public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "T3 Code",
"short_name": "T3 Code",
"description": "The open-source control plane for coding agents.",
"start_url": "/",
"display": "standalone",
"background_color": "#161616",
"theme_color": "#161616",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Manifest ignores light theme

Medium Severity

The manifest.json sets background_color and theme_color to a fixed dark value (#161616). This conflicts with the app's light theme (#ffffff). On iPadOS home-screen launch, this causes a temporary dark splash and mismatched browser chrome for light-theme users before the app renders its light UI.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 05f07b6. Configure here.

"icons": [
{
"src": "/favicon-16x16.png",
"sizes": "16x16",
"type": "image/png"
},
{
"src": "/favicon-32x32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "/apple-touch-icon.png",
"sizes": "180x180",
"type": "image/png"
},
{
"src": "/icon.png",
"sizes": "512x512",
"type": "image/png"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

512 icon skips channel branding

Medium Severity

The PWA manifest's 512x512 icon, /icon.png, isn't updated by the branding override scripts. This means the largest PWA icon might show stale or incorrect channel-specific artwork, even when other icons like favicons and apple-touch-icon.png are correctly branded.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 05f07b6. Configure here.

}
]
}
Loading