diff --git a/README.md b/README.md
index 5c454cc..92b67f6 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-Welcome to your new TanStack app!
+Welcome to your new TanStack app!
# Getting Started
@@ -6,7 +6,7 @@ To run this application:
```bash
npm install
-npm run start
+npm run start
```
# Building For Production
@@ -29,10 +29,8 @@ npm run test
This project uses [Tailwind CSS](https://tailwindcss.com/) for styling.
-
-
-
## Routing
+
This project uses [TanStack Router](https://tanstack.com/router). The initial setup is a file based router. Which means that the routes are managed as files in `src/routes`.
### Adding A Route
@@ -68,8 +66,8 @@ In the File Based Routing setup the layout is located in `src/routes/__root.tsx`
Here is an example layout that includes a header:
```tsx
-import { Outlet, createRootRoute } from '@tanstack/react-router'
-import { TanStackRouterDevtools } from '@tanstack/react-router-devtools'
+import { Outlet, createRootRoute } from "@tanstack/react-router";
+import { TanStackRouterDevtools } from "@tanstack/react-router-devtools";
import { Link } from "@tanstack/react-router";
@@ -86,127 +84,18 @@ export const Route = createRootRoute({