diff --git a/src/components/Icons/LucideLineSquiggle.astro b/src/components/Icons/LucideLineSquiggle.astro
new file mode 100644
index 0000000..d1e7482
--- /dev/null
+++ b/src/components/Icons/LucideLineSquiggle.astro
@@ -0,0 +1,21 @@
+---
+const props = Astro.props;
+---
+
+
diff --git a/src/components/Nav/NavBar.astro b/src/components/Nav/NavBar.astro
new file mode 100644
index 0000000..c0b1313
--- /dev/null
+++ b/src/components/Nav/NavBar.astro
@@ -0,0 +1,27 @@
+---
+import LucideLineSquiggle from "../Icons/LucideLineSquiggle.astro";
+---
+
+
diff --git a/src/components/NavBar.astro b/src/components/NavBar.astro
deleted file mode 100644
index a873c84..0000000
--- a/src/components/NavBar.astro
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro
index e58cf7a..0379584 100644
--- a/src/layouts/BaseLayout.astro
+++ b/src/layouts/BaseLayout.astro
@@ -1,5 +1,5 @@
---
-import NavBar from "../components/NavBar.astro";
+import NavBar from "../components/Nav/NavBar.astro";
import RootLayout from "../layouts/RootLayout.astro";
const { title } = Astro.props;
---