Now you want to create new page, what to do? Just use this template like:
<x-app-component>
<x-page.page-title data="Page title" />
<x-slot name="style">
//your custom css
</x-slot>
<x-slot name="content">
<h4 class="fw-bold py-3 mb-2">Title</h4>
<div class="card">
<div class="card-body table-responsive">
//content section
</div>
</div>
</x-slot>
<x-slot name="script">
//your custom javascript
</x-slot>
</x-app-component>