();
export default function Root() {
- return (
-
-
- Ride the Lightning
-
-
-
-
-
-
-
- Map
- About
-
-
-
-
-
-
-
-
-
-
- );
+ return (
+
+ Ride the Lightning
+
+
+
+
+
+
+
+ Map
+ About
+
+
+
+
+
+
+
+
+
+ ) as JSX.Element;
};
diff --git a/lightning/src/routes/[...404].tsx b/lightning/src/routes/[...404].tsx
index fa43b53..73750d0 100644
--- a/lightning/src/routes/[...404].tsx
+++ b/lightning/src/routes/[...404].tsx
@@ -1,19 +1,24 @@
-import { Title } from "solid-start";
-import { HttpStatusCode } from "solid-start/server";
+import { Title } from 'solid-start';
+import { HttpStatusCode } from 'solid-start/server';
+
+import type { JSX } from 'solid-js';
+
export default function NotFound() {
- return (
-
- Not Found
-
- Page Not Found
-
- Visit{" "}
-
- start.solidjs.com
- {" "}
- to learn how to build SolidStart apps.
-
-
- );
-}
+ return (
+ Not Found
+
+
+
+ Page Not Found
+
+
+ Visit{" "}
+
+ start.solidjs.com
+ {" "}
+ to learn how to build SolidStart apps.
+
+
+ ) as JSX.Element;
+};
diff --git a/lightning/src/routes/about.tsx b/lightning/src/routes/about.tsx
index 04d5abc..95addef 100644
--- a/lightning/src/routes/about.tsx
+++ b/lightning/src/routes/about.tsx
@@ -4,59 +4,52 @@ import type { JSX } from 'solid-js';
export default function Home() {
+ return (
+ About Lightning
- return (
-
- About Lightning
- About
-
-
-
-
- github.com/adoyle0/maps
-
-
-
- ) as JSX.Element;
+ About
+
+
+
+
+
+
+ github.com/adoyle0/maps
+
+
+ ) as JSX.Element;
};
diff --git a/lightning/src/routes/index.tsx b/lightning/src/routes/index.tsx
index c737baf..2fa45b9 100644
--- a/lightning/src/routes/index.tsx
+++ b/lightning/src/routes/index.tsx
@@ -4,9 +4,8 @@ import type { JSX } from 'solid-js';
export default function Home() {
- return (
-
- Ride the Lightning
-
- ) as JSX.Element;
+ return (
+ Ride the Lightning
+
+ ) as JSX.Element;
};