diff --git a/src/app/(routes)/icons/page.tsx b/src/app/(routes)/icons/page.tsx
new file mode 100644
index 0000000..f515501
--- /dev/null
+++ b/src/app/(routes)/icons/page.tsx
@@ -0,0 +1,21 @@
+import { Metadata } from "next";
+
+import * as icons from "@/app/_components/icons";
+
+export const metadata: Metadata = {
+ title: "Across Bridge",
+ description: "Interoperability powered by Intents.",
+};
+
+export default function IconsPage() {
+ return (
+
+ {Object.entries(icons).map(([name, Icon]) => (
+
+
+ {name}
+
+ ))}
+
+ );
+}
diff --git a/src/app/_components/header-nav.tsx b/src/app/_components/header-nav.tsx
index b228bc9..5039acd 100644
--- a/src/app/_components/header-nav.tsx
+++ b/src/app/_components/header-nav.tsx
@@ -1,11 +1,18 @@
import Link from "next/link";
+import { AcrossIcon } from "./icons/across";
+
export default function HeaderNav() {
return (
- Across
+
+
+