Add comprehensive /features page + allow Unsplash imagery

This commit is contained in:
Leon Serfaty
2026-06-08 04:37:10 -04:00
parent 8138827657
commit 305278a846
11 changed files with 1008 additions and 44 deletions
+1 -1
View File
@@ -290,7 +290,7 @@ function BrandingCard({ orgId, branding }: { orgId: string; branding: Branding |
</div>
</div>
{primaryColor.trim() && !previewHsl && (
<p className="text-xs text-warning">Enter a 6-digit hex colour (e.g. #116DFF).</p>
<p className="text-xs text-warning">Enter a 6-digit hex colour (e.g. #E65100).</p>
)}
</div>
<div className="space-y-2">
+1 -1
View File
@@ -85,7 +85,7 @@ export function WaveformPlayer({
ctx.clearRect(0, 0, w, h);
const styles = getComputedStyle(canvas);
const played = `hsl(${styles.getPropertyValue("--brand").trim() || "217 100% 53%"})`;
const played = `hsl(${styles.getPropertyValue("--brand").trim() || "21 100% 45%"})`;
const unplayed = `hsl(${styles.getPropertyValue("--border").trim() || "0 0% 89%"})`;
const n = waveform.length;