updated ide landing

This commit is contained in:
Thomas G 2022-08-11 06:03:27 +10:00
parent 32d23e8e20
commit af044a77f3
2 changed files with 21 additions and 14 deletions

View File

@ -1,17 +1,24 @@
@extends('layouts.ide') @extends('layouts.ide')
@section('title') @section('title')
<title>{{ env('APP_NAME') }}</title> <title>Start Page</title>
@endsection @endsection
@section('titlediscord') @section('titlediscord')
<meta content="{{env('APP_NAME')}}" property="og:title" /> <meta content="Start Page - {{env('APP_NAME')}}" property="og:title" />
@endsection @endsection
@section('descdiscord') @section('descdiscord')
<meta content="ARCHBLOX" property="og:description" /> <meta content="ARCHBLOX" property="og:description" />
@endsection @endsection
@section('content') @section('content')
<h1>My Games</h1> @guest
<button class="greenbutton">Create a Game (disabled)</button> <p>Please <a href="{{ route('login') }}">Log In</a> to continue.</p>
<p>This page does not have any functionality yet other than logging in.</p> @else
<p>Please press the New button in order to create a place to host.</p> <h1>Welcome, {{ Auth::user()->name }}</h1>
<!--
<h1>My Games</h1>
<button class="greenbutton">Create a Game (disabled)</button>
-->
<p>This page does not have any functionality yet other than logging in.</p>
<p>Please press the New button in order to create a place to host.</p>
@endguest
@endsection @endsection

View File

@ -24,18 +24,18 @@
<div class="iphone-sidebar"> <div class="iphone-sidebar">
<p><img src="https://archblox.com/img/MORBLOXlogo.png" width="50%"> Studio</p> <p><img src="https://archblox.com/img/MORBLOXlogo.png" width="50%"> Studio</p>
@guest @guest
<a href="{{ route('login') }}">Log In</a> <a href="{{ route('login') }}">Log In</a>
@else @else
<p class="nonbolded">{{ Auth::user()->name }}<p> <p class="nonbolded">{{ Auth::user()->name }}</p>
@endguest <br>
<br> <a style="color: blue;" href="#">My Games</a>
<a style="color: blue;" href="#">My Games</a> <br>
<br> <a style="color: white;" href="#">My Assets</a>
<a style="color: black;" href="#">My Assets</a> @endguest
</div> </div>
<div class="iphone-content"> <div class="iphone-content">
@yield('content') @yield('content')
</div> </div>
</body> </body>
</html> </html>