diff --git a/docs/public/bg.png b/docs/src/assets/bg.png similarity index 100% rename from docs/public/bg.png rename to docs/src/assets/bg.png diff --git a/docs/public/section-bg-1.png b/docs/src/assets/section-bg-1.png similarity index 100% rename from docs/public/section-bg-1.png rename to docs/src/assets/section-bg-1.png diff --git a/docs/public/section-bg-2.png b/docs/src/assets/section-bg-2.png similarity index 100% rename from docs/public/section-bg-2.png rename to docs/src/assets/section-bg-2.png diff --git a/docs/public/section-bg-3.png b/docs/src/assets/section-bg-3.png similarity index 100% rename from docs/public/section-bg-3.png rename to docs/src/assets/section-bg-3.png diff --git a/docs/src/components/FeatureVisual.astro b/docs/src/components/FeatureVisual.astro new file mode 100644 index 00000000..3a958280 --- /dev/null +++ b/docs/src/components/FeatureVisual.astro @@ -0,0 +1,24 @@ +--- +import { getImage } from 'astro:assets'; + +interface Props { + /** Image import from src/assets/ — processed by Astro's image pipeline */ + image: ImageMetadata; + class?: string; +} + +const { image, class: className } = Astro.props; + +const optimized = await getImage({ + src: image, + format: 'webp', + quality: 80, +}); +--- + +
.env, detects your project from the codebase, and just works. Monorepos, multiple orgs, complex setups — all handled automatically.
Stop memorizing project slugs and DSNs. Start typing commands that make sense.
Get AI-powered root cause analysis right in your terminal. Seer analyzes stack traces, related events, and your codebase to explain exactly what went wrong and why.
Then run sentry issue plan to get a step-by-step fix you can apply immediately.
Structured JSON output for scripts and pipelines. Open issues directly in your browser. Pipe to jq, fzf, or your favorite tools.
Built for humans and AI agents alike — every command is predictable, composable, and automation-ready.