April 24, 2026SimpleNavigation
Nav Glassmorphic
A floating glassmorphic navigation bar with frosted semi-transparent background, centered nav links, locale selector, and outlined CTA button. Collapses to logo + hamburger on mobile with an expanding panel featuring nav links, social links, and email.
Preview
Source
import NavGlassmorphic from "./index.jsx";
import { navGlassmorphic } from "../demo-data.js";
import styles from "./demo.module.css";
export default function NavGlassmorphicDemo() {
return (
<div className={styles.wrapper}>
<NavGlassmorphic {...navGlassmorphic} />
<section className={styles.sectionBlack}>
<p className={styles.labelLight}>[ Works & Archives ]</p>
<h1 className={styles.headingLight}>Every project across era & disciplines</h1>
</section>
<section className={styles.sectionWhite}>
<p className={styles.labelDark}>[ Services ]</p>
<h1 className={styles.headingDark}>Strategy, design & development</h1>
</section>
<section className={styles.sectionCream}>
<p className={styles.labelDark}>[ Contact ]</p>
<h1 className={styles.headingDark}>Let's build something together</h1>
</section>
</div>
);
}