diff --git a/docs/src/layouts/BaseLayout.astro b/docs/src/layouts/BaseLayout.astro index b6d5b33..1453d61 100644 --- a/docs/src/layouts/BaseLayout.astro +++ b/docs/src/layouts/BaseLayout.astro @@ -7,7 +7,7 @@ interface Props { } const { - title = 'rinha2-back-end-rust | Oxidized Performance', + title = 'rinha2-back-end-rust | Blazingly Fast. Eventually Compiled.', description = 'High-performance banking API for the Rinha de Backend challenge. Built with Rust, Actix-web 4, and SQLx. ~140 lines under strict resource constraints (1.5 CPU, 550MB RAM).' } = Astro.props; diff --git a/docs/src/pages/index.astro b/docs/src/pages/index.astro index a14bf08..241d47d 100644 --- a/docs/src/pages/index.astro +++ b/docs/src/pages/index.astro @@ -5,7 +5,7 @@ import Hero from '@/components/home/Hero.astro'; import Dashboard from '@/components/home/Dashboard.astro'; import Footer from '@/components/home/Footer.astro'; -const title = 'rinha2-back-end-rust | Oxidized Performance'; +const title = 'rinha2-back-end-rust | Blazingly Fast. Eventually Compiled.'; const description = 'High-performance banking API for the Rinha de Backend challenge. Built with Rust, Actix-web 4, and SQLx. ~140 lines under strict resource constraints (1.5 CPU, 550MB RAM).'; --- diff --git a/docs/src/styles/globals.css b/docs/src/styles/globals.css index b4f1009..fe1a62b 100644 --- a/docs/src/styles/globals.css +++ b/docs/src/styles/globals.css @@ -69,7 +69,8 @@ body { min-height: 100vh; display: flex; flex-direction: column; - overflow-x: clip; + overflow: clip; + overscroll-behavior-y: none; position: relative; }