diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..64b02a3 Binary files /dev/null and b/.DS_Store differ diff --git a/.vscode/snipsnap.code-snippets b/.vscode/snipsnap.code-snippets new file mode 100644 index 0000000..53ada59 --- /dev/null +++ b/.vscode/snipsnap.code-snippets @@ -0,0 +1,7 @@ + +404 Not Found + +

404 Not Found

+
nginx
+ + diff --git a/exercise/01-routing/app/routes/index.tsx b/exercise/01-routing/app/routes/index.tsx index 2d456ea..e60d648 100644 --- a/exercise/01-routing/app/routes/index.tsx +++ b/exercise/01-routing/app/routes/index.tsx @@ -11,30 +11,30 @@ export default function Index() {
Sonic Youth On Stage
-
-

- +
+

+ Indie Stack

-

+

Check the README.md file for instructions on how to get this project deployed.

-
+
{user ? (
-

+

Hello {user.email} 👋

-
@@ -42,7 +42,7 @@ export default function Index() { ) : ( Log In @@ -60,9 +60,13 @@ export default function Index() {
{/* 💿 Add a link to /posts here */} - -
-
+
+ + Blog Posts + +
+
+
{[ { src: "https://user-images.githubusercontent.com/1500684/157764397-ccd8ea10-b8aa-4772-a99b-35de937319e1.svg", @@ -123,7 +127,7 @@ export default function Index() { {img.alt} diff --git a/exercise/01-routing/app/routes/posts/index.tsx b/exercise/01-routing/app/routes/posts/index.tsx new file mode 100644 index 0000000..2f624a7 --- /dev/null +++ b/exercise/01-routing/app/routes/posts/index.tsx @@ -0,0 +1,9 @@ +export default function PostsRoute() { + return ( +
+

+ post +

+
+ ); +} \ No newline at end of file