19 lines
587 B
PHP
19 lines
587 B
PHP
@extends('layouts.nova')
|
|
|
|
@section('content')
|
|
<div class="bg-slate-900 min-h-screen">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="py-8">
|
|
<header class="mb-6">
|
|
<h1 class="text-3xl font-semibold text-white">Blank</h1>
|
|
</header>
|
|
|
|
<section class="bg-slate-800 rounded-lg p-6 shadow-sm">
|
|
<!-- Empty content area for layout testing -->
|
|
<p class="text-slate-300">Layout test area — add components here.</p>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|