temp fixes for link #2

Merged
mik-tf merged 1 commits from development_2 into development 2024-09-07 00:47:26 +00:00
2 changed files with 14 additions and 14 deletions
Showing only changes of commit 09599c8afc - Show all commits

View File

@ -15,14 +15,14 @@
<h1 class="text-xl font-bold">Dashboard</h1>
</div>
<ul class="mt-5 space-y-2">
<li><a href="#" hx-get="/pages/home" hx-target="#main-content" hx-push-url="true" class="block p-3 hover:bg-gray-600">Home</a></li>
<li><a href="#" hx-get="/pages/profile" hx-target="#main-content" hx-push-url="true" class="block p-3 hover:bg-gray-600" @click="activePage = 'profile'">Profile</a></li>
<li><a href="#" hx-get="/pages/chat" hx-target="#main-content" hx-push-url="true" class="block p-3 hover:bg-gray-600" @click="activePage = 'chat'">Chat</a></li>
<li><a href="#" hx-get="/pages/video" hx-target="#main-content" hx-push-url="true" class="block p-3 hover:bg-gray-600" @click="activePage = 'video'">Video</a></li>
<li><a href="#" hx-get="/pages/calendar" hx-target="#main-content" hx-push-url="true" class="block p-3 hover:bg-gray-600" @click="activePage = 'calendar'">Calendar</a></li>
<li><a href="#" hx-get="/pages/file_management" hx-target="#main-content" hx-push-url="true" class="block p-3 hover:bg-gray-600" @click="activePage = 'file_management'">File Management</a></li>
<li><a href="#" hx-get="/pages/settings" hx-target="#main-content" hx-push-url="true" class="block p-3 hover:bg-gray-600" @click="activePage = 'settings'">Settings</a></li>
<li><a href="#" hx-get="/pages/logout" hx-target="#main-content" hx-push-url="true" class="block p-3 hover:bg-gray-600">Log Out</a></li>
<li><a href="#" hx-get="/pages/home" hx-target="#main-content" hx-push-url="false" class="block p-3 hover:bg-gray-600">Home</a></li>
<li><a href="#" hx-get="/pages/profile" hx-target="#main-content" hx-push-url="false" class="block p-3 hover:bg-gray-600" @click="activePage = 'profile'">Profile</a></li>
<li><a href="#" hx-get="/pages/chat" hx-target="#main-content" hx-push-url="false" class="block p-3 hover:bg-gray-600" @click="activePage = 'chat'">Chat</a></li>
<li><a href="#" hx-get="/pages/video" hx-target="#main-content" hx-push-url="false" class="block p-3 hover:bg-gray-600" @click="activePage = 'video'">Video</a></li>
<li><a href="#" hx-get="/pages/calendar" hx-target="#main-content" hx-push-url="false" class="block p-3 hover:bg-gray-600" @click="activePage = 'calendar'">Calendar</a></li>
<li><a href="#" hx-get="/pages/file_management" hx-target="#main-content" hx-push-url="false" class="block p-3 hover:bg-gray-600" @click="activePage = 'file_management'">File Management</a></li>
<li><a href="#" hx-get="/pages/settings" hx-target="#main-content" hx-push-url="false" class="block p-3 hover:bg-gray-600" @click="activePage = 'settings'">Settings</a></li>
<li><a href="#" hx-get="/pages/logout" hx-target="#main-content" hx-push-url="false" class="block p-3 hover:bg-gray-600">Log Out</a></li>
</ul>
</div>
<div id="main-content" class="flex-1 p-10">

View File

@ -7,42 +7,42 @@
<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"
<a href="#" hx-get="/pages/profile" hx-target="#main-content" hx-push-url="false"
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"
<a href="#" hx-get="/pages/chat" hx-target="#main-content" hx-push-url="false"
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"
<a href="#" hx-get="/pages/video" hx-target="#main-content" hx-push-url="false"
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"
<a href="#" hx-get="/pages/calendar" hx-target="#main-content" hx-push-url="false"
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"
<a href="#" hx-get="/pages/file_management" hx-target="#main-content" hx-push-url="false"
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"
<a href="#" hx-get="/pages/settings" hx-target="#main-content" hx-push-url="false"
class="text-blue-600 hover:underline mt-3 block">Go to Settings</a>
</div>
</div>