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 }, 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

+
    + {teamMembers.map((member) => ( +
  • + {/* Avatar placeholder */} +
    + {member.name + .split(' ') + .map((n) => n[0]) + .join('')} +
    +
    +

    {member.name}

    +

    {member.title}

    +

    {member.bio}

    + +
    +
  • + ))} +
+
+ + {/* Press / partnership */} +
+

Press & Partnerships

+

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

+ +
+ +
+ + About c0upons + + + Browse coupons + +
+
+ ); +} 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