File size: 16,924 Bytes
e81c702 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | <!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 -->
<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">
<!-- Sidebar -->
<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 Content -->
<main class="flex-1 md:ml-64 p-4 md:p-6">
<div class="max-w-6xl mx-auto">
<!-- Build Header -->
<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>
<!-- Benchmark Cards -->
<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>
<!-- Parts List -->
<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">
<!-- Part cards would be dynamically loaded here -->
<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>
<!-- Export Options -->
<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>
<!-- Ad Banner -->
<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 -->
<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>
// Toggle sidebar on mobile
document.getElementById('sidebarToggle').addEventListener('click', function() {
const sidebar = document.getElementById('sidebar');
sidebar.classList.toggle('sidebar-hidden');
});
// Simulate loading content
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');
// In a real app, you would replace this with actual content
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> |