mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-24 02:11:30 +01:00
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
<div class="flex justify-center grow mt-2 sm:mt-4 gap-6">
|
|
<div class="container">
|
|
<!-- Search Bar -->
|
|
<div class="form-control w-full mx-auto mt-8 flex flex-col justify-center">
|
|
<h1 class="textl-lg text-center pb-5">So here you can search all your ingressed documents</h1>
|
|
<input type="text" placeholder="Search your knowledge base" class="mx-auto input input-bordered w-full sm:w-3/4"
|
|
name="query" hx-get="/search" hx-target="#search-results" />
|
|
<div id="search-results" class="mt-4">
|
|
<!-- Results will be populated here by HTMX -->
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Recent Activity -->
|
|
<div class="card bg-base-100 shadow-xl">
|
|
<div class="card-body">
|
|
<h2 class="card-title">Recent Activity</h2>
|
|
<div class="skeleton h-32 w-full"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Quick Actions - Modified button to link to ingress form -->
|
|
<div class="card bg-base-100 shadow-xl mt-4">
|
|
<div class="card-body">
|
|
<h2 class="card-title">Quick Actions</h2>
|
|
<div class="flex gap-4">
|
|
<a class="btn btn-primary" hx-get="/ingress-form" hx-swap="outerHTML">Add Content</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |