design installed
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domains\Dummy\Controllers;
|
||||
|
||||
use App\Providers\InertiaProvider;
|
||||
use Inertia\Response;
|
||||
|
||||
class DummyController
|
||||
{
|
||||
public function __invoke(): Response
|
||||
{
|
||||
return (new InertiaProvider('Dummy/Dummy', []))->render();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
use App\Domains\Dummy\Controllers\DummyController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/dummy', DummyController::class)->name('dummy');
|
||||
@@ -0,0 +1,54 @@
|
||||
<script setup>
|
||||
import AppLayout from '@/layouts/AppLayout.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<AppLayout title="Dummy">
|
||||
<div class="placeholder">
|
||||
<div class="placeholder-icon-wrap" style="background: #1d4899;">
|
||||
<font-awesome-icon icon="cube" class="placeholder-icon" />
|
||||
</div>
|
||||
<h1 class="placeholder-title">Dummy</h1>
|
||||
<p class="placeholder-text">Platzhalter-Seite für zukünftige Inhalte.</p>
|
||||
</div>
|
||||
</AppLayout>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.placeholder {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 60vh;
|
||||
gap: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.placeholder-icon-wrap {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.placeholder-icon {
|
||||
font-size: 2.2rem;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
|
||||
.placeholder-title {
|
||||
margin: 0;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
color: #111827;
|
||||
}
|
||||
|
||||
.placeholder-text {
|
||||
margin: 0;
|
||||
color: #6b7280;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user