April 9, 2026SimpleNavigation
Nav Bar
Fixed transparent navbar with name/role on the left, flip-text navigation links in the center, and a live EST clock on the right. Hover reveals a growing underline and a vertical text flip. Active link state is driven by URL hash.
Preview
Source
import NavBar from "./index.jsx";
import styles from "./demo.module.css";
export default function NavBarDemo() {
return (
<div className={styles.demo}>
<NavBar />
<div className={styles.hero}>
<p className={styles.label}>Est. 2024 — New York</p>
<h1 className={styles.heading}>No. 5 Studio</h1>
<p className={styles.sub}>Design & Development</p>
</div>
<div className={styles.footer}>
<span>Selected Work</span>
<span>Currently Available</span>
</div>
</div>
);
}