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'); +});