Files
SnapOtter/apps/landing/src/components/open-source.tsx
T
SnapOtter 0309e0f680 chore: deploy to Cloudflare Pages and update branding
- Add Cloudflare Pages deployment for landing page (snapotter.com) and
  docs (docs.snapotter.com)
- Create deploy-landing.yml and update deploy-docs.yml workflows
- Update CI to ignore apps/landing/** paths
- Fix logo transparency (remove white background) across all apps
- Recreate social-preview.png with SnapOtter branding
- Update all docs URLs from GitHub Pages to docs.snapotter.com
- Update VitePress config: light theme default, fix llms.txt paths
- Add .vitepress/cache/ and .env.* to gitignore
2026-04-24 18:06:29 +08:00

33 lines
1.2 KiB
TypeScript

import { Github, Star } from "lucide-react";
import { FadeIn } from "./fade-in";
export function OpenSource() {
return (
<section id="open-source" className="px-6 py-24 md:py-36">
<div className="mx-auto max-w-3xl text-center">
<FadeIn>
<h2 className="font-[family-name:var(--font-nunito)] text-3xl font-bold tracking-tight md:text-4xl">
Open source. Always.
</h2>
<p className="mt-6 text-lg leading-relaxed text-muted">
SnapOtter is AGPL-3.0 licensed. Inspect every line of code. Contribute back. Self-host
forever. No vendor lock-in, no surprise pricing changes, no rug pulls.
</p>
<div className="mt-10">
<a
href="https://github.com/snapotter-hq/snapotter"
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center gap-2 rounded-xl bg-teal px-6 py-3 text-base font-semibold text-white transition-colors hover:bg-teal-hover"
>
<Github size={20} />
Star on GitHub
<Star size={16} className="text-accent" />
</a>
</div>
</FadeIn>
</div>
</section>
);
}