Index: sets/styling/blog.css
===================================================================
--- assets/styling/blog.css	(revision c009c0e336d47865a534e4c126fe7d53c60d433a)
+++ 	(revision )
@@ -1,8 +1,0 @@
-#blog {
-  margin-top: 50px;
-}
-
-#blog a {
-  color: #ffffff;
-  margin-top: 50px;
-}
Index: src/main.rs
===================================================================
--- src/main.rs	(revision c009c0e336d47865a534e4c126fe7d53c60d433a)
+++ src/main.rs	(revision ea9c50fd4a2217c17aee70ee1087b26aec0dea61)
@@ -2,5 +2,5 @@
 use dioxus::prelude::*;
 
-use views::{Blog, Navbar, TransactionAccounts};
+use views::{Navbar, TransactionAccounts};
 
 /// Define a components module that contains all shared components for our app.
@@ -24,10 +24,4 @@
         #[route("/")]
         TransactionAccounts {},
-        // The route attribute can include dynamic parameters that implement [`std::str::FromStr`] and [`std::fmt::Display`] with the `:` syntax.
-        // In this case, id will match any integer like `/blog/123` or `/blog/-456`.
-        #[route("/blog/:id")]
-        // Fields of the route variant will be passed to the component as props. In this case, the blog component must accept
-        // an `id` prop of type `i32`.
-        Blog { id: i32 },
 }
 
Index: c/views/blog.rs
===================================================================
--- src/views/blog.rs	(revision c009c0e336d47865a534e4c126fe7d53c60d433a)
+++ 	(revision )
@@ -1,39 +1,0 @@
-use crate::Route;
-use dioxus::prelude::*;
-
-const BLOG_CSS: Asset = asset!("/assets/styling/blog.css");
-
-/// The Blog page component that will be rendered when the current route is `[Route::Blog]`
-///
-/// The component takes a `id` prop of type `i32` from the route enum. Whenever the id changes, the component function will be
-/// re-run and the rendered HTML will be updated.
-#[component]
-pub fn Blog(id: i32) -> Element {
-    rsx! {
-        document::Link { rel: "stylesheet", href: BLOG_CSS }
-
-        div {
-            id: "blog",
-
-            // Content
-            h1 { "This is blog #{id}!" }
-            p { "In blog #{id}, we show how the Dioxus router works and how URL parameters can be passed as props to our route components." }
-
-            // Navigation links
-            // The `Link` component lets us link to other routes inside our app. It takes a `to` prop of type `Route` and
-            // any number of child nodes.
-            Link {
-                // The `to` prop is the route that the link should navigate to. We can use the `Route` enum to link to the
-                // blog page with the id of -1. Since we are using an enum instead of a string, all of the routes will be checked
-                // at compile time to make sure they are valid.
-                to: Route::Blog { id: id - 1 },
-                "Previous"
-            }
-            span { " <---> " }
-            Link {
-                to: Route::Blog { id: id + 1 },
-                "Next"
-            }
-        }
-    }
-}
Index: src/views/mod.rs
===================================================================
--- src/views/mod.rs	(revision c009c0e336d47865a534e4c126fe7d53c60d433a)
+++ src/views/mod.rs	(revision ea9c50fd4a2217c17aee70ee1087b26aec0dea61)
@@ -12,7 +12,4 @@
 pub use transaction_accounts::TransactionAccounts;
 
-mod blog;
-pub use blog::Blog;
-
 mod navbar;
 pub use navbar::Navbar;
Index: src/views/navbar.rs
===================================================================
--- src/views/navbar.rs	(revision c009c0e336d47865a534e4c126fe7d53c60d433a)
+++ src/views/navbar.rs	(revision ea9c50fd4a2217c17aee70ee1087b26aec0dea61)
@@ -20,5 +20,5 @@
         div { id: "navbar",
             Link { id: "navbar-item", to: Route::TransactionAccounts {}, "Transaction Accounts" }
-            Link { id: "navbar-item", to: Route::Blog { id: 1 }, "Dummy" }
+            Link { id: "navbar-item", to: Route::TransactionAccounts {}, "Transaction Accounts" }
 
             div { class: "fab-container",
@@ -26,6 +26,6 @@
             }
 
-            Link { id: "navbar-item", to: Route::TransactionAccounts {}, "Dummy" }
-            Link { id: "navbar-item", to: Route::Blog { id: 1 }, "Dummy" }
+            Link { id: "navbar-item", to: Route::TransactionAccounts {}, "Transaction Accounts" }
+            Link { id: "navbar-item", to: Route::TransactionAccounts {}, "Transaction Accounts" }
         }
     }
