buyback update

This commit is contained in:
2026-05-17 00:27:07 -05:00
parent 0b3616d29c
commit 395056a91c
4 changed files with 31 additions and 3 deletions

View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en" data-bs-theme="auto">
<head>
<!-- Scripts -->
@vite(['resources/sass/app.scss', 'resources/js/app.js'])
@include('layouts.head')
</head>
<body class="bg-body-tertiary">
<!-- Include the symbols for svg drawing -->
@include('layouts.svg')
<!-- End svg drawing symbols -->
<!-- Content of the main body -->
<main class="col-sm-10 bg-body-tertiary" id="main">
<div class="container-fluid">
@yield('content')
<!-- Footer for end section -->
@include('layouts.buyback.footer')
<!-- End Footer -->
</div>
</main>
<!-- End Content of the main body -->
</body>
</html>

View File

@@ -0,0 +1,5 @@
<div class="row">
<footer class="pt-5 d-flex justify-content-between">
<p class="col-md-4 mb-0 text-body-secondary">© Alliance-Services Buyback</p>
</footer>
</div>

View File

@@ -39,9 +39,6 @@
</main> </main>
<!-- end main --> <!-- end main -->
<!-- offcanvas - heres is a copy of aside and must be the same as navbar section -->
<!-- End offcanvas (Put back if needed later. -->
<!-- Include end of body scripts --> <!-- Include end of body scripts -->
@include('layouts.body-scripts') @include('layouts.body-scripts')
</body> </body>