parfum/resources/views/components/layouts/home.blade.php
Yoga Pangestu 078b7fa7b5 feat(home): templating blade
- route baru
- halaman depan
2025-11-06 08:37:36 +07:00

25 lines
709 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
@include('components.partials.home._meta')
@include('components.partials.home._css')
</head>
<body>
<div class="content-wrapper">
@include('components.partials.home._header')
{{ $slot }}
</div>
<!-- /.content-wrapper -->
@include('components.partials.home._footer')
<div class="progress-wrap">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
</div>
@include('components.partials.home._js')
</body>
</html>