Skip to content

Commit

Permalink
feat: Convert manage.vue to Blade component with L
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Mar 10, 2024
1 parent c5a107f commit 5b52f4b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions resources/views/components/manage_section.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<div>
<h2>Manage Your Genealogy</h2>
<p>Explore and manage your family tree with ease.</p>
<div class="manage-section">
<div class="card" wire:click="navigateToFamilyTree">
<div class="card-body">
<h5 class="card-title">Family Tree</h5>
<p class="card-text">View and edit your family tree.</p>
</div>
</div>
<div class="card" wire:click="navigateToRecords">
<div class="card-body">
<h5 class="card-title">Records</h5>
<p class="card-text">Access and manage historical records.</p>
</div>
</div>
<div class="card" wire:click="navigateToSettings">
<div class="card-body">
<h5 class="card-title">Settings</h5>
<p class="card-text">Configure your account and preferences.</p>
</div>
</div>
</div>
</div>

0 comments on commit 5b52f4b

Please sign in to comment.