Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/(marketing)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ export default async function Landing() {

return (
<>
{/* Preload globe textures so they're cached before the client component mounts */}
<link rel="preload" href="/img/earth-blue-marble.jpg" as="image" />
<link rel="preload" href="/img/clouds.png" as="image" />
{/* ponytail: no texture preload — LiveGlobe is dynamic({ ssr: false }), so it
mounts after hydration anyway. Preloading pulled 6.5MB into the critical
window ahead of the render-blocking CSS that gates first paint. */}
<Box className={styles.landing} px={{ sm: "6", lg: "9" }}>
<Box className={styles.landingInner} mx="auto" maxWidth="1400px">
<Navigation />
Expand Down
Loading