ui_poc/app/static/pages/home.html

49 lines
2.5 KiB
HTML
Raw Normal View History

2024-09-06 00:59:46 +00:00
<!-- frontend/pagess/home.html -->
<div id="home" class="content">
<h3 class="text-xl font-semibold">Home</h3>
<p class="mt-3">Welcome to your dashboard! Click on a section below to view more details.</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 mt-5">
<div class="bg-white rounded shadow p-5">
<h4 class="text-lg font-semibold">Profile</h4>
<p class="mt-2">Manage your personal information and settings.</p>
<a href="#" hx-get="/pages/profile" hx-target="#main-content" hx-push-url="true"
class="text-blue-600 hover:underline mt-3 block">Go to Profile</a>
</div>
<div class="bg-white rounded shadow p-5">
<h4 class="text-lg font-semibold">Chat</h4>
<p class="mt-2">Connect with your contacts in real-time.</p>
<a href="#" hx-get="/pages/chat" hx-target="#main-content" hx-push-url="true"
class="text-blue-600 hover:underline mt-3 block">Go to Chat</a>
</div>
<div class="bg-white rounded shadow p-5">
<h4 class="text-lg font-semibold">Videos</h4>
<p class="mt-2">Watch and manage your video content.</p>
<a href="#" hx-get="/pages/video" hx-target="#main-content" hx-push-url="true"
class="text-blue-600 hover:underline mt-3 block">Go to Videos</a>
</div>
<div class="bg-white rounded shadow p-5">
<h4 class="text-lg font-semibold">Calendar</h4>
<p class="mt-2">Keep track of your events and appointments.</p>
<a href="#" hx-get="/pages/calendar" hx-target="#main-content" hx-push-url="true"
class="text-blue-600 hover:underline mt-3 block">Go to Calendar</a>
</div>
<div class="bg-white rounded shadow p-5">
<h4 class="text-lg font-semibold">File Management</h4>
<p class="mt-2">Upload and manage your files.</p>
<a href="#" hx-get="/pages/file_management" hx-target="#main-content" hx-push-url="true"
class="text-blue-600 hover:underline mt-3 block">Go to File Management</a>
</div>
<div class="bg-white rounded shadow p-5">
<h4 class="text-lg font-semibold">Settings</h4>
<p class="mt-2">Customize your application settings.</p>
<a href="#" hx-get="/pages/settings" hx-target="#main-content" hx-push-url="true"
class="text-blue-600 hover:underline mt-3 block">Go to Settings</a>
</div>
</div>
</div>