| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>New Build | BuildCores</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| .loading-pulse { |
| animation: pulse 1.5s infinite; |
| } |
| @keyframes pulse { |
| 0%, 100% { opacity: 0.5; } |
| 50% { opacity: 1; } |
| } |
| .sidebar { |
| transition: transform 0.3s ease; |
| } |
| .sidebar-hidden { |
| transform: translateX(-100%); |
| } |
| .gradient-bg { |
| background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); |
| } |
| .part-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); |
| } |
| </style> |
| </head> |
| <body class="bg-gray-100 text-gray-900 font-sans"> |
| |
| <header class="gradient-bg text-white shadow-lg"> |
| <div class="container mx-auto px-4 py-3 flex justify-between items-center"> |
| <div class="flex items-center space-x-3"> |
| <img src="https://www.buildcores.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Flogo.1d1e0dcd.png&w=64&q=75" |
| alt="BuildCores Logo" class="w-10 h-10"> |
| <span class="font-bold text-xl">BuildCores <span class="text-xs bg-blue-500 px-2 py-1 rounded">BETA v0.12</span></span> |
| </div> |
| <button id="sidebarToggle" class="md:hidden text-white focus:outline-none"> |
| <i class="fas fa-bars text-xl"></i> |
| </button> |
| </div> |
| </header> |
|
|
| <div class="flex flex-col md:flex-row"> |
| |
| <aside id="sidebar" class="sidebar w-64 bg-gray-800 text-white h-screen fixed md:relative z-10"> |
| <div class="p-4 border-b border-gray-700"> |
| <h2 class="text-xl font-bold">PC Builds</h2> |
| </div> |
| <div class="p-4 space-y-4"> |
| <div class="bg-gray-700 p-3 rounded-lg"> |
| <div class="flex justify-between items-center mb-2"> |
| <span class="font-medium">Current Build</span> |
| <button class="text-blue-400 hover:text-blue-300 text-sm">Switch Build</button> |
| </div> |
| <div class="bg-gray-600 p-2 rounded"> |
| <div class="loading-pulse h-4 w-3/4 bg-gray-500 rounded mb-1"></div> |
| <div class="loading-pulse h-3 w-1/2 bg-gray-500 rounded"></div> |
| </div> |
| </div> |
| |
| <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-lg flex items-center justify-center space-x-2"> |
| <i class="fas fa-plus"></i> |
| <span>Create New Build</span> |
| </button> |
| |
| <div class="bg-gray-700 p-3 rounded-lg"> |
| <div class="flex justify-between items-center mb-2"> |
| <span class="font-medium">Recent Builds</span> |
| </div> |
| <div class="space-y-2"> |
| <div class="bg-gray-600 p-2 rounded"> |
| <div class="loading-pulse h-4 w-3/4 bg-gray-500 rounded mb-1"></div> |
| <div class="loading-pulse h-3 w-1/2 bg-gray-500 rounded"></div> |
| </div> |
| <div class="bg-gray-600 p-2 rounded"> |
| <div class="loading-pulse h-4 w-3/4 bg-gray-500 rounded mb-1"></div> |
| <div class="loading-pulse h-3 w-1/2 bg-gray-500 rounded"></div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </aside> |
|
|
| |
| <main class="flex-1 md:ml-64 p-4 md:p-6"> |
| <div class="max-w-6xl mx-auto"> |
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden mb-6"> |
| <div class="p-6"> |
| <div class="flex flex-col md:flex-row md:justify-between md:items-center"> |
| <div> |
| <h1 class="text-2xl font-bold text-gray-800 mb-2">New Build</h1> |
| <div class="flex items-center space-x-4 text-sm text-gray-600"> |
| <span><i class="far fa-calendar mr-1"></i> July 4, 2025</span> |
| <span><i class="far fa-user mr-1"></i> Anonymous</span> |
| <span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs"> |
| <i class="fas fa-check-circle mr-1"></i> Compatible |
| </span> |
| </div> |
| </div> |
| <div class="mt-4 md:mt-0 flex space-x-2"> |
| <button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg flex items-center"> |
| <i class="fas fa-share-alt mr-2"></i> Share |
| </button> |
| <button class="bg-gray-200 hover:bg-gray-300 text-gray-800 px-4 py-2 rounded-lg flex items-center"> |
| <i class="fas fa-clone mr-2"></i> Clone |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-6"> |
| <div class="bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="p-4 flex items-center"> |
| <img src="https://www.buildcores.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2F3dmark.6e9e4b94.png&w=256&q=75" |
| alt="3DMark" class="w-16 h-16 mr-4"> |
| <div> |
| <h3 class="font-bold text-gray-800">3DMark Time Spy</h3> |
| <div class="text-sm text-gray-600"> |
| <span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs"> |
| <i class="fas fa-check-circle mr-1"></i> Compatible |
| </span> |
| </div> |
| </div> |
| </div> |
| </div> |
| <div class="bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="p-4 flex items-center"> |
| <img src="https://www.buildcores.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2F3dmark.6e9e4b94.png&w=256&q=75" |
| alt="3DMark" class="w-16 h-16 mr-4"> |
| <div> |
| <h3 class="font-bold text-gray-800">3DMark Time Spy</h3> |
| <div class="text-sm text-gray-600"> |
| <span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs"> |
| <i class="fas fa-check-circle mr-1"></i> Compatible |
| </span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden mb-6"> |
| <div class="border-b border-gray-200 p-4"> |
| <h2 class="text-xl font-bold text-gray-800">Parts List</h2> |
| </div> |
| <div class="p-4"> |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4"> |
| |
| <div class="part-card bg-gray-50 rounded-lg p-4 border border-gray-200 transition-all duration-300"> |
| <div class="loading-pulse h-6 w-3/4 bg-gray-300 rounded mb-3"></div> |
| <div class="loading-pulse h-4 w-full bg-gray-300 rounded mb-2"></div> |
| <div class="loading-pulse h-4 w-1/2 bg-gray-300 rounded"></div> |
| </div> |
| <div class="part-card bg-gray-50 rounded-lg p-4 border border-gray-200 transition-all duration-300"> |
| <div class="loading-pulse h-6 w-3/4 bg-gray-300 rounded mb-3"></div> |
| <div class="loading-pulse h-4 w-full bg-gray-300 rounded mb-2"></div> |
| <div class="loading-pulse h-4 w-1/2 bg-gray-300 rounded"></div> |
| </div> |
| <div class="part-card bg-gray-50 rounded-lg p-4 border border-gray-200 transition-all duration-300"> |
| <div class="loading-pulse h-6 w-3/4 bg-gray-300 rounded mb-3"></div> |
| <div class="loading-pulse h-4 w-full bg-gray-300 rounded mb-2"></div> |
| <div class="loading-pulse h-4 w-1/2 bg-gray-300 rounded"></div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden mb-6"> |
| <div class="border-b border-gray-200 p-4"> |
| <h2 class="text-xl font-bold text-gray-800">Export Build</h2> |
| </div> |
| <div class="p-4 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4"> |
| <button class="bg-gray-100 hover:bg-gray-200 text-gray-800 p-4 rounded-lg flex flex-col items-center"> |
| <i class="fas fa-link text-2xl mb-2 text-blue-500"></i> |
| <span>Link</span> |
| </button> |
| <button class="bg-gray-100 hover:bg-gray-200 text-gray-800 p-4 rounded-lg flex flex-col items-center"> |
| <i class="fas fa-table text-2xl mb-2 text-green-500"></i> |
| <span>Markdown Table</span> |
| </button> |
| <button class="bg-gray-100 hover:bg-gray-200 text-gray-800 p-4 rounded-lg flex flex-col items-center"> |
| <i class="fas fa-file-alt text-2xl mb-2 text-purple-500"></i> |
| <span>Text</span> |
| </button> |
| <button class="bg-gray-100 hover:bg-gray-200 text-gray-800 p-4 rounded-lg flex flex-col items-center"> |
| <i class="fas fa-copy text-2xl mb-2 text-orange-500"></i> |
| <span>Clone Build</span> |
| </button> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden mb-6 p-4 flex justify-center"> |
| <a href="https://www.playwire.com/contact-direct-sales" target="_blank" rel="noopener noreferrer"> |
| <img src="https://www.buildcores.com/_next/image?url=https%3A%2F%2Fwww.playwire.com%2Fhubfs%2FPowered-by-Playwire-Badges%2FAds-Powered-by-playwire-2021-standalone-small-white-300px.png&w=640&q=75" |
| alt="Powered by Playwire" class="h-12"> |
| </a> |
| </div> |
| </div> |
| </main> |
| </div> |
|
|
| |
| <footer class="gradient-bg text-white py-8"> |
| <div class="container mx-auto px-4"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
| <div class="flex flex-col items-center md:items-start"> |
| <div class="flex items-center space-x-3 mb-4"> |
| <img src="https://www.buildcores.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Flogo.1d1e0dcd.png&w=64&q=75" |
| alt="BuildCores Logo" class="w-10 h-10"> |
| <span class="font-bold text-lg">BuildCores</span> |
| </div> |
| <p class="text-gray-400 text-sm">Build, share, and compare PC builds with the community.</p> |
| </div> |
| |
| <div> |
| <h3 class="font-bold text-lg mb-4">Company</h3> |
| <ul class="space-y-2"> |
| <li><a href="https://www.buildcores.com/privacy" class="text-gray-400 hover:text-white">Privacy</a></li> |
| <li><a href="https://www.buildcores.com/terms" class="text-gray-400 hover:text-white">ToS</a></li> |
| <li><a href="https://www.buildcores.com/affiliate" class="text-gray-400 hover:text-white">Affiliate</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="font-bold text-lg mb-4">Community</h3> |
| <ul class="space-y-2"> |
| <li><a href="https://github.com/buildcores/buildcores-open-db" class="text-gray-400 hover:text-white">GitHub</a></li> |
| <li><a href="https://discord.gg/gxHtZx3Uxe" class="text-gray-400 hover:text-white">Discord</a></li> |
| <li><a href="https://reddit.com/r/buildcores" class="text-gray-400 hover:text-white">Reddit</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="font-bold text-lg mb-4">Contact</h3> |
| <ul class="space-y-2"> |
| <li><a href="https://www.buildcores.com/contact" class="text-gray-400 hover:text-white">Contact Us</a></li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-700 mt-8 pt-6 text-sm text-gray-400 text-center"> |
| <p>© 2025 BuildCores. All rights reserved.</p> |
| <div class="flex justify-center space-x-4 mt-2"> |
| <a href="https://www.buildcores.com/contact" class="hover:text-white">Contact Us</a> |
| <a href="https://www.buildcores.com/privacy" class="hover:text-white">Privacy Policy</a> |
| <a href="https://www.buildcores.com/terms" class="hover:text-white">Terms of Service</a> |
| <a href="https://www.buildcores.com/affiliate" class="hover:text-white">Affiliate Disclosure</a> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| document.getElementById('sidebarToggle').addEventListener('click', function() { |
| const sidebar = document.getElementById('sidebar'); |
| sidebar.classList.toggle('sidebar-hidden'); |
| }); |
| |
| |
| setTimeout(() => { |
| const loadingElements = document.querySelectorAll('.loading-pulse'); |
| loadingElements.forEach(el => { |
| el.classList.remove('loading-pulse', 'bg-gray-300', 'bg-gray-500'); |
| el.classList.add('bg-transparent'); |
| |
| if(el.parentElement.classList.contains('part-card')) { |
| el.parentElement.innerHTML = ` |
| <h3 class="font-bold text-gray-800">Sample Component</h3> |
| <p class="text-gray-600 text-sm">Brand Model XYZ</p> |
| <p class="text-blue-600 font-medium">$299.99</p> |
| `; |
| } else { |
| el.textContent = "Loaded content"; |
| } |
| }); |
| }, 1500); |
| </script> |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=caio246/pc-bild" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |