-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement layout into View component and configure Setup views
- Loading branch information
Showing
5 changed files
with
35 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<x-cachet::cachet :title="$title"> | ||
<div class="flex items-center justify-center px-8 py-6"> | ||
<div> | ||
<a href="{{ route('cachet.status-page') }}" class="transition hover:opacity-80"> | ||
<x-cachet::logo class="hidden h-8 w-auto sm:block"/> | ||
<x-cachet::logomark class="h-8 w-auto sm:hidden"/> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
Setup Content | ||
|
||
<x-cachet::footer/> | ||
</x-cachet::cachet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
@extends('cachet::layouts.status-page') | ||
@section('content') | ||
<x-cachet::header /> | ||
<x-cachet::cachet> | ||
<x-cachet::header/> | ||
|
||
<div class="mx-auto max-w-5xl px-4 py-10 sm:px-6 lg:px-8"> | ||
<div> | ||
<h2 class="text-3xl font-semibold">About This Site</h2> | ||
<div class="prose prose-zinc mt-1 dark:prose-invert prose-a:text-primary-500 prose-a:underline"> | ||
{{-- format-ignore-start --}} | ||
<p> | ||
This is the demo instance of <a href="https://cachethq.io/" target="_blank">Cachet</a>. The open-source status page system. | ||
</p> | ||
<p> | ||
This is the demo instance of <a href="https://cachethq.io/" target="_blank">Cachet</a>. The | ||
open-source status page system. | ||
</p> | ||
{{-- format-ignore-end --}} | ||
</div> | ||
</div> | ||
|
||
<div class="mt-6 space-y-10"> | ||
<x-cachet::status-bar /> | ||
<x-cachet::status-bar/> | ||
|
||
<x-cachet::component-group title="Laravel" /> | ||
<x-cachet::component-group title="Cachet" /> | ||
<x-cachet::component-group title="Laravel"/> | ||
<x-cachet::component-group title="Cachet"/> | ||
|
||
<x-cachet::maintenance /> | ||
<x-cachet::maintenance/> | ||
|
||
<x-cachet::incidents /> | ||
<x-cachet::incidents/> | ||
</div> | ||
</div> | ||
|
||
<x-cachet::footer /> | ||
@endsection | ||
<x-cachet::footer/> | ||
</x-cachet::cachet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters