Added add poll form

This commit is contained in:
Manik Maity
2024-11-07 12:29:11 +05:30
parent ece2b33eb7
commit 8d2358fbd9
5 changed files with 74 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ function Dashboard() {
)}
{/* User Profile Sidebar */}
<aside className="w-full lg:w-1/4 bg-slate-800 rounded-md m-4 bg-opacity-50 shadow-lg p-4 flex flex-col items-center">
<aside className="w-min lg:w-1/4 bg-slate-800 rounded-md m-4 bg-opacity-50 shadow-lg p-4 flex flex-col items-center">
<img
src="https://via.placeholder.com/150" // Replace with actual path
alt="User Profile"
@@ -37,8 +37,8 @@ function Dashboard() {
<main className="w-full lg:w-3/4 p-6">
{/* Dashboard Header */}
<div className="mb-6">
<h1 className="text-4xl font-bold text-white">Poll Dashboard</h1>
<p className="text-lg text-gray-300">Manage your polls, view results, and edit as needed.</p>
<h1 className="text-2xl md:text-4xl font-bold text-white">Poll Dashboard</h1>
<p className="md:text-lg text-gray-300">Manage your polls, view results, and edit as needed.</p>
</div>
{/* Add New Poll Button */}