You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1004 B
PHTML
36 lines
1004 B
PHTML
@extends('layouts.basePage', [
|
|
'title' => _env('APP_NAME', 'aNetwork Gaming Community'),
|
|
'breadcrumbs' => [
|
|
[
|
|
'title' => 'Home',
|
|
'href' => '/',
|
|
]
|
|
]
|
|
])
|
|
|
|
@section('content')
|
|
|
|
@include('components/header')
|
|
|
|
<main>
|
|
|
|
<section class="alerts">
|
|
<div class="container" style="padding-bottom: 0">
|
|
<section class="row">
|
|
<section class="col col-12">
|
|
<aside class="alert"><p>aNetwork is currently undergoing development changes</p></aside>
|
|
<aside class="alert alert--success"><p>aNetwork is currently undergoing development changes</p></aside>
|
|
<aside class="alert alert--warning"><p>aNetwork is currently undergoing development changes</p></aside>
|
|
<aside class="alert alert--error"><p>aNetwork is currently undergoing development changes</p></aside>
|
|
</section>
|
|
</section>
|
|
</div>
|
|
</section>
|
|
|
|
@includeIf('components/contact-form')
|
|
|
|
</main>
|
|
|
|
@includeIf('components/footer')
|
|
|
|
@endsection |