From 86c5e43ec80d1358c9bcbec11883ddbffb9cdfb5 Mon Sep 17 00:00:00 2001 From: "crawlproof[bot]" <286981042+crawlproof[bot]@users.noreply.github.com> Date: Tue, 9 Jun 2026 06:11:11 +0000 Subject: [PATCH 1/3] =?UTF-8?q?Fix=20missing.team=5Fpage:=20No=20/team,=20?= =?UTF-8?q?/leadership,=20or=20/company=20page=20=E2=80=94=20executive=20t?= =?UTF-8?q?eam=20is=20invisible?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/app/team/page.tsx | 169 +++++++++++++++++++++++++++++++++++++ 1 file changed, 169 insertions(+) create mode 100644 apps/web/app/team/page.tsx diff --git a/apps/web/app/team/page.tsx b/apps/web/app/team/page.tsx new file mode 100644 index 0000000..42d7c61 --- /dev/null +++ b/apps/web/app/team/page.tsx @@ -0,0 +1,169 @@ +import type { Metadata } from 'next'; +import Link from 'next/link'; + +export const metadata: Metadata = { + title: 'Team & Company', + description: + 'Meet the team behind c0upons — built by Profullstack, Inc., a software studio focused on open-source developer tools and community platforms.', + alternates: { canonical: 'https://c0upons.com/team' }, + openGraph: { + title: 'Team & Company — c0upons', + description: + 'Meet the team behind c0upons — built by Profullstack, Inc., a software studio focused on open-source developer tools and community platforms.', + url: 'https://c0upons.com/team', + }, +}; + +const teamMembers = [ + { + name: 'Anthony Lam', + title: 'Founder & CEO', + bio: 'Anthony founded Profullstack, Inc. with a focus on building practical, open-source developer tools and community-first platforms. He leads product direction, engineering, and growth for c0upons.', + email: 'anthony@profullstack.com', + github: 'https://github.com/profullstack', + }, +]; + +export default function TeamPage() { + return ( +
+
+

Team & Company

+

The people and mission behind c0upons.

+
+ + {/* Company background */} +
+

About Profullstack, Inc.

+

+ c0upons is built and maintained by{' '} + + Profullstack, Inc. + + , a software studio dedicated to creating open-source tools that put communities first. + Founded on the belief that great software should be transparent, accessible, and free + from unnecessary friction, Profullstack ships products used by developers and consumers + worldwide. +

+

+ Our projects span community platforms, developer utilities, and consumer-facing apps — + all released under permissive open-source licenses whenever possible. We are a + fully-remote, independent company with no outside investors. +

+
+

Company: Profullstack, Inc.

+

Website:{' '} + + profullstack.com + +

+

GitHub:{' '} + + github.com/profullstack + +

+

General inquiries:{' '} + + anthony@profullstack.com + +

+
+
+ + {/* Team */} +
+

Our Team

+ +
+ + {/* Press / partnership */} +
+

Press & Partnerships

+

+ For press inquiries, partnership opportunities, or media assets, please reach out directly: +

+ +
+ +
+ + About c0upons + + + Browse coupons + +
+
+ ); +} From ef1ba1329629269a00324f990235fcff21bdf27d Mon Sep 17 00:00:00 2001 From: "crawlproof[bot]" <286981042+crawlproof[bot]@users.noreply.github.com> Date: Tue, 9 Jun 2026 06:11:12 +0000 Subject: [PATCH 2/3] =?UTF-8?q?Fix=20missing.team=5Fpage:=20No=20/team,=20?= =?UTF-8?q?/leadership,=20or=20/company=20page=20=E2=80=94=20executive=20t?= =?UTF-8?q?eam=20is=20invisible?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/components/Footer.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/components/Footer.tsx b/apps/web/components/Footer.tsx index 6e3ae2d..c07b578 100644 --- a/apps/web/components/Footer.tsx +++ b/apps/web/components/Footer.tsx @@ -36,6 +36,7 @@ export default function Footer() { Bounties Blog About + Team Privacy Terms From c642c94a1d8aa60e5ef7462b3c5ce7b2fb5914a5 Mon Sep 17 00:00:00 2001 From: "crawlproof[bot]" <286981042+crawlproof[bot]@users.noreply.github.com> Date: Tue, 9 Jun 2026 06:11:13 +0000 Subject: [PATCH 3/3] =?UTF-8?q?Fix=20missing.team=5Fpage:=20No=20/team,=20?= =?UTF-8?q?/leadership,=20or=20/company=20page=20=E2=80=94=20executive=20t?= =?UTF-8?q?eam=20is=20invisible?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/app/sitemap.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/app/sitemap.ts b/apps/web/app/sitemap.ts index b82a7ee..e7e212d 100644 --- a/apps/web/app/sitemap.ts +++ b/apps/web/app/sitemap.ts @@ -11,6 +11,7 @@ export default async function sitemap(): Promise { { url: `${BASE}/docs`, changeFrequency: 'monthly', priority: 0.6 }, { url: `${BASE}/search`, changeFrequency: 'monthly', priority: 0.5 }, { url: `${BASE}/about`, changeFrequency: 'monthly', priority: 0.5 }, + { url: `${BASE}/team`, changeFrequency: 'monthly', priority: 0.5 }, { url: `${BASE}/blog`, changeFrequency: 'daily', priority: 0.8 }, { url: `${BASE}/bounties`, changeFrequency: 'daily', priority: 0.8 }, { url: `${BASE}/privacy`, changeFrequency: 'yearly', priority: 0.3 },