diff --git a/app/Http/Controllers/PrivacyController.php b/app/Http/Controllers/PrivacyController.php deleted file mode 100644 index 277bf35..0000000 --- a/app/Http/Controllers/PrivacyController.php +++ /dev/null @@ -1,16 +0,0 @@ - .section > button { - margin-top: 5px; -} diff --git a/public/images/buttons/aliasing.png b/public/images/buttons/aliasing.png deleted file mode 100644 index 27b53e9..0000000 Binary files a/public/images/buttons/aliasing.png and /dev/null differ diff --git a/public/images/buttons/brokenimage.gif b/public/images/buttons/brokenimage.gif deleted file mode 100644 index 32bf833..0000000 Binary files a/public/images/buttons/brokenimage.gif and /dev/null differ diff --git a/public/images/buttons/cnfunknown.gif b/public/images/buttons/cnfunknown.gif deleted file mode 100644 index b8e9239..0000000 Binary files a/public/images/buttons/cnfunknown.gif and /dev/null differ diff --git a/public/images/buttons/juli.gif b/public/images/buttons/juli.gif deleted file mode 100644 index 4ff0364..0000000 Binary files a/public/images/buttons/juli.gif and /dev/null differ diff --git a/public/images/buttons/paws.gif b/public/images/buttons/paws.gif deleted file mode 100644 index b585800..0000000 Binary files a/public/images/buttons/paws.gif and /dev/null differ diff --git a/public/images/buttons/x86.gif b/public/images/buttons/x86.gif deleted file mode 100644 index f271daa..0000000 Binary files a/public/images/buttons/x86.gif and /dev/null differ diff --git a/resources/views/components/layout.blade.php b/resources/views/components/layout.blade.php index 2ac3632..7e36de5 100644 --- a/resources/views/components/layout.blade.php +++ b/resources/views/components/layout.blade.php @@ -52,30 +52,10 @@ diff --git a/resources/views/privacy.blade.php b/resources/views/privacy.blade.php deleted file mode 100644 index 0d0ebfa..0000000 --- a/resources/views/privacy.blade.php +++ /dev/null @@ -1,26 +0,0 @@ - - Privacy -
-

What am I doing with your data?

-
-

1. What's collected?

-

This site uses the Apache2 webserver and thus, for every request received, the following is logged:

- -

My website doesn't collect any more than stated above (except MediaWiki maybe)


-

2. Why are logs kept?

-

So I can examine and prevent attacks such as spam or DDoS-ing attempts


-

3. When are the logs analyzed?

-

Usually, unless I suspect an attack of some kind, I won't actively spend hours perusing the logs.


-

4. Can I opt-out?

-

Maybe? If you want to, you can email wehmaster@weh.moe and I'll try and sort it out as fast as possible (assuming I can figure out how)


-
Any outlinks and hotlinked/embedded resources are subject to their own privacy policies and have nothing to do with me.
-
Last updated: September 9th, 2024
-
-
diff --git a/routes/web.php b/routes/web.php index af97484..0b10251 100644 --- a/routes/web.php +++ b/routes/web.php @@ -6,7 +6,6 @@ use App\Http\Controllers\GuestbookController; use App\Http\Controllers\HomeController; use App\Http\Controllers\MusicController; -use App\Http\Controllers\PrivacyController; use Illuminate\Support\Facades\Route; /* @@ -27,6 +26,5 @@ Route::get('/calculators', [CalculatorsController::class, 'show']); Route::get('/computers', [ComputersController::class, 'show']); Route::get('/music', [MusicController::class, 'show']); -Route::get('/privacy', [PrivacyController::class, 'show']); Route::post('/guestbook', [GuestbookController::class, 'addEntry']) ->middleware('rate_limit');