April 8, 2026SimpleNavigation
Staggered Nav Dock Entrance
Nav dock items stagger in on first page load with a delay after the loading screen completes. Each item fades up with a 1s duration entrance curve and 3s initial delay, 0.08s stagger.
Preview
Source
import StaggeredNavDockEntrance from "./index.jsx";
import styles from "./demo.module.css";
const props = {
siteName: "no-5.studio",
links: [
{ label: "Work", href: "#" },
{ label: "Lab", href: "#" },
{ label: "About", href: "#" },
{ label: "Contact", href: "#" },
],
};
export default function StaggeredNavDockEntranceDemo() {
return (
<div className={styles.demo}>
<StaggeredNavDockEntrance {...props} />
<div className={styles.hero}>
<p className={styles.label}>2024 — In Development</p>
<h1 className={styles.heading}>The Lab</h1>
<p className={styles.sub}>Experiments & Prototypes</p>
</div>
</div>
);
}
Dependencies
framer-motion