Skip to content

Commit

Permalink
feat: Add home layout Blade file with navigation a
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Mar 10, 2024
1 parent ac38895 commit 21d0310
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions resources/views/layouts/home.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liberu Genealogy</title>
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
@livewireStyles
</head>
<body>
@include('components.nav')

<main>
@include('components.home.manage')
@include('components.home.products')
@include('components.home.whyUs')
</main>

<script src="{{ asset('js/app.js') }}"></script>
@livewireScripts
</body>
</html>

0 comments on commit 21d0310

Please sign in to comment.