Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions app/[locale]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { setRequestLocale } from "next-intl/server";
import Hero from "@/components/sections/Hero";
import EffaceIntro from "@/components/sections/EffaceIntro";
import AppCards from "@/components/sections/AppCards";
import CapabilitiesScene from "@/components/sections/CapabilitiesScene";
import Approach from "@/components/sections/Approach";
Expand All @@ -20,6 +21,7 @@ export default async function Home({
<span id="top" aria-hidden />
<main>
<Hero />
<EffaceIntro />
<AppCards />
<CapabilitiesScene />
<Approach />
Expand Down
17 changes: 17 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,23 @@ body {
}
}

/* Slow float for the clutter pieces in the efface intro scene. */
@keyframes bob {
0%,
100% {
transform: translateY(-6px);
}
50% {
transform: translateY(8px);
}
}

@media (prefers-reduced-motion: reduce) {
[style*="animation: bob"] {
animation: none !important;
}
}

/* ── Capabilities scene ──────────────────────────────────────────
Per-card accent arrives as the --acc custom property; chips mix it
into their text/background/border so one rule covers all four columns. */
Expand Down
Loading
Loading