Add "placeholder" bot page

This commit is contained in:
floppydiskette 2023-08-22 12:03:05 +01:00
parent 99c0d2068d
commit e144965ed5
Signed by: fwoppydwisk
SSH key fingerprint: SHA256:yXxSuswzElTluzXjKgvZK0bDGhTaj/XbArybRDr+Mfs
2 changed files with 12 additions and 2 deletions

View file

@ -0,0 +1,7 @@
@extends('layouts.default')
@section('title', 'Discord Bot')
@section('description', '')
@section('content')
<p>The diskfloppy.me Discord bot blah blah blah blah blah</p>
<p>Maybe I'll finish this page later idk</p>
@stop

View file

@ -44,11 +44,14 @@
return view('pages.weather'); return view('pages.weather');
}); });
Route::get('/music', function () Route::get('/music', function () {
{
return view('pages.music'); return view('pages.music');
}); });
Route::get('/bot', function () {
return view('pages.bot');
});
/* ------------------------------ Admin Routes ------------------------------ */ /* ------------------------------ Admin Routes ------------------------------ */
Route::get('/admin', function () { Route::get('/admin', function () {