diff --git a/public/site/icons/jobs.svg b/public/site/icons/jobs.svg
new file mode 100644
index 0000000..79d77c0
--- /dev/null
+++ b/public/site/icons/jobs.svg
@@ -0,0 +1 @@
+
diff --git a/src/content/website/jobs.mdx b/src/content/website/jobs.mdx
new file mode 100644
index 0000000..16f540d
--- /dev/null
+++ b/src/content/website/jobs.mdx
@@ -0,0 +1,79 @@
+---
+title: Jobs at Promptless
+description: "Join the Promptless team. We're hiring founders-mindset people to build the future of documentation."
+routePath: /jobs
+order: 4
+hidden: true
+---
+
+# Work at Promptless!
+
+Promptless builds AI agents that automatically update customer-facing documentation. Some of the best docs teams use Promptless, and we serve startups and Fortune 500 companies alike. We were funded by Y Combinator and raised a seed round from top VCs and angel investors.
+
+We're a small team in San Francisco where everyone works directly on the hardest problems at the company. On any given day, you might talk to a customer, design a feature with the founders, ship code, and watch real users interact with what you built. We believe AI won't take people's jobs—but people who use AI well will replace those who don't. We're building the tools to make AI better fit into the workflows for people at work.
+
+Read more about [why we're building Promptless](/blog/technical/why-were-building-promptless).
+
+If you want to do the most impactful work of your career at a company that's growing fast, we'd love to hear from you.
+
+**We're hiring for:**
+- [**Founding Docs Practice Lead**](#founding-docs-practice-lead): Own the documentation discipline at Promptless. Work directly with customers to onboard them, build the playbook, and coach teams on AI-assisted docs.
+- [**Founding Engineer**](#founding-engineer-all-levels): Build the core product—AI agents, integrations, and infrastructure that powers automatic documentation updates.
+
+For all roles, reach out at **founders@gopromptless.ai**.
+
+---
+
+## Founding Docs Practice Lead
+
+**San Francisco, CA** · **Full-time**
+
+This is a one-of-one role. You'll own the documentation practice at Promptless—working directly with customers to onboard them onto the platform, building the methodology for AI-assisted documentation, and growing our reputation as the company that makes documentation teams more effective. Think of it like a practice lead at a top consulting firm, except the domain is docs and the leverage is AI.
+
+**What you'll do**
+
+- Onboard customers onto Promptless, working hands-on with their documentation, codebase, and team workflows
+- Coach technical writers and other documentarians on structuring documentation, using AI effectively, and getting the most out of Promptless
+- Build and refine the playbook for how documentation teams adopt AI-assisted workflows
+- Shape the product by translating real documentation workflows into features
+- Champion the documentation community—share what's working, surface new roles emerging from AI adoption, and help teams thrive
+
+**What we're looking for**
+
+- Deep experience in technical documentation—you've written developer docs, API references, or support content
+- Comfortable with code—you can read a PR and understand what changed (maybe with Claude's help)
+- Excited about AI and eager to push the boundaries of what's possible with LLM-assisted writing
+- Strong communicator who can earn trust with both engineers and writers
+- Entrepreneurial mindset—you'll be building this function from scratch
+
+**Compensation:** $140k–$200k base + 0.25%–1.00% equity, depending on candidate level.
+
+**Interested?** Reach out at [founders@gopromptless.ai](mailto:founders@gopromptless.ai?subject=Founding%20Docs%20Practice%20Lead).
+
+---
+
+## Founding Engineer
+
+**San Francisco, CA** · **Full-time**
+
+You'll build the core product—the AI agents, the integrations, the infrastructure that powers automatic documentation updates for hundreds of companies.
+
+**What you'll do**
+
+- Ship production code that real users depend on
+- Build across the full stack—React frontend, Python/Flask backend, API integrations, and Kubernetes infrastructure
+- Work with LLMs to build agent-based systems
+- Talk to customers and translate their needs into product
+
+**What we're looking for**
+
+- You've shipped production code for real users
+- You're comfortable across the stack—frontend, backend, infra
+- You've built something with LLMs (work projects or side projects both count)
+- You learn fast and experiment constantly
+
+**Bonus:** Experience building LLM agents or contributions to open-source AI projects.
+
+**Compensation:** $140k–$200k base + 0.40%–2.00% equity, depending on candidate level.
+
+**Interested?** Reach out at [founders@gopromptless.ai](mailto:founders@gopromptless.ai?subject=Founding%20Engineer).
diff --git a/src/lib/site-navigation.ts b/src/lib/site-navigation.ts
index 26e74a9..8b2b5fc 100644
--- a/src/lib/site-navigation.ts
+++ b/src/lib/site-navigation.ts
@@ -41,6 +41,7 @@ export function getActiveSection(pathname: string): SiteSection {
normalized === '/demo' ||
normalized === '/pricing' ||
normalized === '/meet' ||
+ normalized === '/jobs' ||
normalized === '/wtd-portland-2026' ||
normalized.startsWith('/site')
) {
diff --git a/src/lib/website-navigation.ts b/src/lib/website-navigation.ts
index a5a0c03..c918a82 100644
--- a/src/lib/website-navigation.ts
+++ b/src/lib/website-navigation.ts
@@ -1,10 +1,10 @@
-export type WebsitePageId = 'home' | 'demo' | 'pricing' | 'meet' | 'wtd-portland-2026';
+export type WebsitePageId = 'home' | 'demo' | 'pricing' | 'meet' | 'jobs' | 'wtd-portland-2026';
export interface WebsiteNavItem {
id: WebsitePageId;
href: string;
label: string;
- icon: 'overview' | 'video' | 'pricing' | 'meet' | 'calendar';
+ icon: 'overview' | 'video' | 'pricing' | 'meet' | 'jobs' | 'calendar';
}
interface WebsiteSidebarLink {
@@ -18,6 +18,7 @@ export const WEBSITE_NAV_ITEMS: WebsiteNavItem[] = [
{ id: 'demo', href: '/demo', label: 'Demo', icon: 'video' },
{ id: 'pricing', href: '/pricing', label: 'Pricing', icon: 'pricing' },
{ id: 'meet', href: '/meet', label: 'Meet', icon: 'meet' },
+ { id: 'jobs', href: '/jobs', label: 'Work at Promptless!', icon: 'jobs' },
{ id: 'wtd-portland-2026', href: '/wtd-portland-2026', label: 'WTD 2026', icon: 'calendar' },
];
diff --git a/src/pages/jobs.astro b/src/pages/jobs.astro
new file mode 100644
index 0000000..715342b
--- /dev/null
+++ b/src/pages/jobs.astro
@@ -0,0 +1,83 @@
+---
+import { getEntry } from 'astro:content';
+import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro';
+import { getWebsiteSidebarLinks } from '@lib/website-navigation';
+
+const entry = await getEntry('website', 'jobs');
+
+if (!entry) {
+ throw new Error('Missing website content entry: jobs');
+}
+
+const { Content, headings } = await entry.render();
+
+const org = {
+ "@type": "Organization",
+ "name": "Promptless",
+ "sameAs": "https://promptless.ai",
+ "logo": "https://promptless.ai/assets/logo.svg"
+};
+
+const location = {
+ "@type": "Place",
+ "address": {
+ "@type": "PostalAddress",
+ "addressLocality": "San Francisco",
+ "addressRegion": "CA",
+ "addressCountry": "US"
+ }
+};
+
+const jobPostings = [
+ {
+ "@context": "https://schema.org",
+ "@type": "JobPosting",
+ "title": "Founding Engineer (All Levels)",
+ "description": "Join the Promptless team as a founding engineer. Build AI that keeps documentation in sync with code.",
+ "datePosted": "2025-01-01",
+ "employmentType": "FULL_TIME",
+ "hiringOrganization": org,
+ "jobLocation": location,
+ "baseSalary": {
+ "@type": "MonetaryAmount",
+ "currency": "USD",
+ "value": {
+ "@type": "QuantitativeValue",
+ "minValue": 140000,
+ "maxValue": 200000,
+ "unitText": "YEAR"
+ }
+ }
+ },
+ {
+ "@context": "https://schema.org",
+ "@type": "JobPosting",
+ "title": "Founding Docs Practice Lead",
+ "description": "Own the documentation practice at Promptless. Onboard customers, build the playbook for AI-assisted documentation, and coach teams on effective workflows.",
+ "datePosted": "2025-01-01",
+ "employmentType": "FULL_TIME",
+ "hiringOrganization": org,
+ "jobLocation": location,
+ }
+];
+---
+
+
+ {jobPostings.map((posting) => (
+
+ ))}
+