Add "placeholder" bot page
This commit is contained in:
parent
99c0d2068d
commit
e144965ed5
2 changed files with 12 additions and 2 deletions
7
resources/views/pages/bot.blade.php
Normal file
7
resources/views/pages/bot.blade.php
Normal 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
|
|
@ -44,11 +44,14 @@
|
|||
return view('pages.weather');
|
||||
});
|
||||
|
||||
Route::get('/music', function ()
|
||||
{
|
||||
Route::get('/music', function () {
|
||||
return view('pages.music');
|
||||
});
|
||||
|
||||
Route::get('/bot', function () {
|
||||
return view('pages.bot');
|
||||
});
|
||||
|
||||
/* ------------------------------ Admin Routes ------------------------------ */
|
||||
|
||||
Route::get('/admin', function () {
|
||||
|
|
Loading…
Reference in a new issue