| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>My Proposals | ProposalCraft</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| </head> |
| <body class="bg-gray-50"> |
| <custom-navbar></custom-navbar> |
| |
| <div class="container mx-auto px-4 py-12 max-w-6xl"> |
| <div class="flex items-center justify-between mb-8"> |
| <h1 class="text-3xl font-bold text-gray-800">My Proposals</h1> |
| <a href="/create.html" class="bg-purple-600 hover:bg-purple-700 text-white px-6 py-2 rounded-lg font-medium flex items-center gap-2"> |
| <i data-feather="plus"></i> New Proposal |
| </a> |
| </div> |
|
|
| <div class="bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6 p-6"> |
| |
| <div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow"> |
| <div class="bg-gray-100 p-4"> |
| <h3 class="font-bold text-lg">Website Redesign Proposal</h3> |
| <p class="text-gray-500 text-sm">Last edited: 2 days ago</p> |
| </div> |
| <div class="p-4"> |
| <div class="flex items-center justify-between mb-3"> |
| <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Active</span> |
| <span class="text-gray-500 text-sm">12 pages</span> |
| </div> |
| <p class="text-gray-600 mb-4">Proposal for redesigning the company website with modern UX principles.</p> |
| <div class="flex justify-between"> |
| <a href="#" class="text-purple-600 hover:text-purple-800 flex items-center gap-1"> |
| <i data-feather="eye" class="w-4 h-4"></i> Preview |
| </a> |
| <a href="#" class="text-blue-600 hover:text-blue-800 flex items-center gap-1"> |
| <i data-feather="download" class="w-4 h-4"></i> PDF |
| </a> |
| <a href="/create.html" class="text-gray-600 hover:text-gray-800 flex items-center gap-1"> |
| <i data-feather="edit" class="w-4 h-4"></i> Edit |
| </a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow"> |
| <div class="bg-gray-100 p-4"> |
| <h3 class="font-bold text-lg">Marketing Campaign</h3> |
| <p class="text-gray-500 text-sm">Last edited: 1 week ago</p> |
| </div> |
| <div class="p-4"> |
| <div class="flex items-center justify-between mb-3"> |
| <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Sent</span> |
| <span class="text-gray-500 text-sm">8 pages</span> |
| </div> |
| <p class="text-gray-600 mb-4">Q3 marketing strategy proposal for the new product launch.</p> |
| <div class="flex justify-between"> |
| <a href="#" class="text-purple-600 hover:text-purple-800 flex items-center gap-1"> |
| <i data-feather="eye" class="w-4 h-4"></i> Preview |
| </a> |
| <a href="#" class="text-blue-600 hover:text-blue-800 flex items-center gap-1"> |
| <i data-feather="download" class="w-4 h-4"></i> PDF |
| </a> |
| <a href="/create.html" class="text-gray-600 hover:text-gray-800 flex items-center gap-1"> |
| <i data-feather="edit" class="w-4 h-4"></i> Edit |
| </a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow"> |
| <div class="bg-gray-100 p-4"> |
| <h3 class="font-bold text-lg">Mobile App Development</h3> |
| <p class="text-gray-500 text-sm">Last edited: 3 weeks ago</p> |
| </div> |
| <div class="p-4"> |
| <div class="flex items-center justify-between mb-3"> |
| <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded">Draft</span> |
| <span class="text-gray-500 text-sm">5 pages</span> |
| </div> |
| <p class="text-gray-600 mb-4">Initial proposal for customer loyalty mobile application.</p> |
| <div class="flex justify-between"> |
| <a href="#" class="text-purple-600 hover:text-purple-800 flex items-center gap-1"> |
| <i data-feather="eye" class="w-4 h-4"></i> Preview |
| </a> |
| <a href="#" class="text-blue-600 hover:text-blue-800 flex items-center gap-1"> |
| <i data-feather="download" class="w-4 h-4"></i> PDF |
| </a> |
| <a href="/create.html" class="text-gray-600 hover:text-gray-800 flex items-center gap-1"> |
| <i data-feather="edit" class="w-4 h-4"></i> Edit |
| </a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="border-2 border-dashed border-gray-300 rounded-lg flex items-center justify-center hover:border-purple-500 transition-colors"> |
| <a href="/create.html" class="p-8 text-center"> |
| <div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-3"> |
| <i data-feather="plus" class="text-purple-600"></i> |
| </div> |
| <h3 class="font-medium text-gray-700">Create New Proposal</h3> |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <custom-footer></custom-footer> |
|
|
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |