19 lines
679 B
PHP
19 lines
679 B
PHP
@extends('layouts.loggedout')
|
|
@section('title')
|
|
<title>{{ env('APP_NAME') }} - It's Archaic!
|
|
</title>
|
|
@endsection
|
|
@section('titlediscord')
|
|
<meta content="{{ env('APP_NAME') }}" property="og:title" />
|
|
@endsection
|
|
@section('descdiscord')
|
|
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
|
@endsection
|
|
@section('contentloggedout')
|
|
<h1>Welcome to ARCHBLOX!</h1>
|
|
<p>ARCHBLOX is a Work-In-Progress revival.</p>
|
|
<br>
|
|
<p><a alt="Sign Up button" href="{{ route('register') }}" >Sign Up</a> or <a alt="Log In button" href="{{ route('login') }}">Login</a></p>
|
|
<br>
|
|
<a class="hyperlink" href="https://discord.gg/nudzQ7hkWY">Join our Discord!</a>
|
|
@endsection
|