From f2a3846b871d4cd6b72062c6098076940b875a9f Mon Sep 17 00:00:00 2001 From: Dym Sohin Date: Wed, 7 Aug 2024 13:37:14 +0200 Subject: [PATCH] some upds --- public/pages/comics/index.html | 158 ---------------------------- public/pages/graphics/index.html | 125 ---------------------- public/pages/photos/index.html | 161 ----------------------------- resources/views/comics.blade.php | 75 ++++++++++++++ resources/views/graphics.blade.php | 45 ++++++++ resources/views/notes.blade.php | 17 +++ resources/views/photos.blade.php | 81 +++++++++++++++ routes/web.php | 16 +++ 8 files changed, 234 insertions(+), 444 deletions(-) delete mode 100644 public/pages/comics/index.html delete mode 100644 public/pages/graphics/index.html delete mode 100644 public/pages/photos/index.html create mode 100644 resources/views/comics.blade.php create mode 100644 resources/views/graphics.blade.php create mode 100644 resources/views/notes.blade.php create mode 100644 resources/views/photos.blade.php diff --git a/public/pages/comics/index.html b/public/pages/comics/index.html deleted file mode 100644 index fcb4891..0000000 --- a/public/pages/comics/index.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - -/comics of @dym - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - diff --git a/public/pages/graphics/index.html b/public/pages/graphics/index.html deleted file mode 100644 index f5f4353..0000000 --- a/public/pages/graphics/index.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - -/graphics of @dym - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - diff --git a/public/pages/photos/index.html b/public/pages/photos/index.html deleted file mode 100644 index 49a91be..0000000 --- a/public/pages/photos/index.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - -/photos of @dym - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - diff --git a/resources/views/comics.blade.php b/resources/views/comics.blade.php new file mode 100644 index 0000000..cf6a77b --- /dev/null +++ b/resources/views/comics.blade.php @@ -0,0 +1,75 @@ + + +
+ + + + +
+ +
diff --git a/resources/views/graphics.blade.php b/resources/views/graphics.blade.php new file mode 100644 index 0000000..1e5c3d4 --- /dev/null +++ b/resources/views/graphics.blade.php @@ -0,0 +1,45 @@ + + +
+ +
+ +
diff --git a/resources/views/notes.blade.php b/resources/views/notes.blade.php new file mode 100644 index 0000000..0b7d184 --- /dev/null +++ b/resources/views/notes.blade.php @@ -0,0 +1,17 @@ + + + + +
+

2024

+
+

a groot start

+

even if earth is not exactly flat, my living space — is.

+
+
+ +
diff --git a/resources/views/photos.blade.php b/resources/views/photos.blade.php new file mode 100644 index 0000000..3262f35 --- /dev/null +++ b/resources/views/photos.blade.php @@ -0,0 +1,81 @@ + + +
+ +
+ +
diff --git a/routes/web.php b/routes/web.php index 97dbfe7..168726d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -11,6 +11,22 @@ Route::get('/about', function () { return view('about'); }); +Route::get('/graphics', function () { + return view('graphics'); +}); + +Route::get('/photos', function () { + return view('photos'); +}); + +Route::get('/comics', function () { + return view('comics'); +}); + Route::get('/code', function () { return view('code'); }); + +Route::get('/notes', function () { + return view('code'); +});