diff --git a/lightning/src/components/BadassMap.tsx b/lightning/src/components/BadassMap.tsx index 7086d9b..9524110 100644 --- a/lightning/src/components/BadassMap.tsx +++ b/lightning/src/components/BadassMap.tsx @@ -13,6 +13,8 @@ export default function BadassMap() { antialias: true, } as Viewport); + const [rotate, toggleRotate] = createSignal(true) + return ( setViewport(evt)} > - + @@ -36,7 +38,7 @@ export default function BadassMap() { }} /> diff --git a/lightning/src/root.css b/lightning/src/root.css index fb59b86..960ba38 100644 --- a/lightning/src/root.css +++ b/lightning/src/root.css @@ -19,7 +19,7 @@ h1 { font-size: 4rem; font-weight: 100; line-height: 1.1; - margin: 4rem auto; + margin: 1rem auto; max-width: 14rem; } diff --git a/lightning/src/routes/about.tsx b/lightning/src/routes/about.tsx index 1a81a21..8b03d01 100644 --- a/lightning/src/routes/about.tsx +++ b/lightning/src/routes/about.tsx @@ -1,4 +1,5 @@ import { Title } from 'solid-start'; +import Counter from "~/components/Counter"; export default function Home() { return ( @@ -33,6 +34,7 @@ export default function Home() { github.com/adoyle0/maps

+ ); } diff --git a/lightning/src/routes/index.tsx b/lightning/src/routes/index.tsx index 4fb57ec..efe7a7b 100644 --- a/lightning/src/routes/index.tsx +++ b/lightning/src/routes/index.tsx @@ -1,14 +1,9 @@ import { Title } from "solid-start"; -import Counter from "~/components/Counter"; export default function Home() { return (
Lightning -

Lightning

- -

Click and drag to watch me explode! -

); }