From d61179b73edd03ec0f9aef9bed1d60510b74b587 Mon Sep 17 00:00:00 2001 From: RyanLisse Date: Mon, 10 Oct 2022 03:52:54 +0200 Subject: [PATCH 1/2] started --- .vscode/snipsnap.code-snippets | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .vscode/snipsnap.code-snippets 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
+ + From d2e0bd2c94c1620f708e4dbb9f67574178d713d1 Mon Sep 17 00:00:00 2001 From: RyanLisse Date: Mon, 10 Oct 2022 04:26:31 +0200 Subject: [PATCH 2/2] exercise 1 --- .DS_Store | Bin 0 -> 6148 bytes exercise/01-routing/app/routes/index.tsx | 30 ++++++++++-------- .../01-routing/app/routes/posts/index.tsx | 9 ++++++ 3 files changed, 26 insertions(+), 13 deletions(-) create mode 100644 .DS_Store create mode 100644 exercise/01-routing/app/routes/posts/index.tsx diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..64b02a31bc482f05d2d26c559669e5b5da0b124e GIT binary patch literal 6148 zcmeHK%}T>S5Z-O8O(;SR3Oz1(E!aN=@e*o%0V8@)sfh_1jM>t(Rw#v>^@V&ApU0Wq z4Op6kClNaXv)}B_%x>m`>*hw zT}YV(h3yBIaWo$}yQeap`f(afR6-m^5OQ-Br=gq=l*QnDOS1ZFjX654X!qw_9E>t+bTkFH`!+UrnJNF+dFbGX{8V=nV%@lsQ}1%EPl(fZlu3{Qv*} literal 0 HcmV?d00001 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