diff --git a/sim/app/(landing)/nav-client.tsx b/sim/app/(landing)/nav-client.tsx
new file mode 100644
index 000000000..8dc4ea617
--- /dev/null
+++ b/sim/app/(landing)/nav-client.tsx
@@ -0,0 +1,75 @@
+'use client'
+
+import { useWindowSize } from './use-window-size'
+
+const XIcon = () => (
+
+)
+
+const DiscordIcon = () => (
+
+)
+
+export default function NavClient({ children }: { children: React.ReactNode }) {
+ const { width } = useWindowSize()
+ const isMobile = width !== undefined && width < 640
+
+ return (
+
+ )
+}