Skip to content
Merged
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
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,33 @@
<meta property="og:type" content="website" />
<meta property="og:url" content="https://tinystudio.io/" />
<link rel="canonical" href="https://tinystudio.io/" />
<meta property="og:image" content="https://tinystudio.io/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="TinyStudio Agent Desk — self-serve AI agents for high-ticket pipeline setup"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="TinyStudio Agent Desk" />
<meta
name="twitter:description"
content="Build a high-ticket lead-to-call pipeline brief with Cloudflare-powered TinyStudio agents."
/>
<meta name="twitter:image" content="https://tinystudio.io/og-image.png" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="stylesheet" href="/styles.css" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "TinyStudio",
"url": "https://tinystudio.io/",
"logo": "https://tinystudio.io/apple-touch-icon.png",
"description": "Self-serve AI agents for high-ticket pipeline setup: offer, funnel, creative, qualification, follow-up, CRM, tracking, and decision plans."
}
</script>
</head>
<body>
<main class="agent-shell" id="top">
Expand Down
Binary file added public/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/worker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
const SECURITY_HEADERS = {
// Verified missing on the live host before adding: HTTPS already works on
// tinystudio.io, www, and app, so a year-long max-age with subdomains is safe.
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
"X-Frame-Options": "DENY",
"Referrer-Policy": "strict-origin-when-cross-origin",
Expand All @@ -13,6 +16,8 @@ const PUBLIC_ASSET_PATHS = new Set([
"/styles.css",
"/script.js",
"/favicon.svg",
"/apple-touch-icon.png",
"/og-image.png",
"/robots.txt",
"/sitemap.xml",
"/llms.txt",
Expand Down