Spaces:
Running
Running
File size: 44,869 Bytes
c9021b0 |
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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sigma Trial - Cutting Edge Analysis</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>
/* Custom animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.fade-in {
animation: fadeIn 0.5s ease-in-out;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #3b82f6;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #2563eb;
}
/* Gradient text */
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #10b981);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
/* Card hover effect */
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Header -->
<header class="sticky top-0 z-50 bg-white shadow-md">
<div class="container mx-auto px-4 py-3">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 bg-gradient-to-r from-blue-500 to-green-500 rounded-full flex items-center justify-center">
<span class="text-white font-bold text-xl">Σ</span>
</div>
<h1 class="text-2xl font-bold gradient-text">Sigma Trial</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#home" class="text-gray-700 hover:text-blue-600 font-medium transition">Home</a>
<a href="#categories" class="text-gray-700 hover:text-blue-600 font-medium transition">Categories</a>
<a href="#trending" class="text-gray-700 hover:text-blue-600 font-medium transition">Trending</a>
<a href="#store" class="text-gray-700 hover:text-blue-600 font-medium transition">Store</a>
<a href="#about" class="text-gray-700 hover:text-blue-600 font-medium transition">About</a>
</nav>
<div class="flex items-center space-x-4">
<button class="md:hidden text-gray-700" id="mobile-menu-button">
<i class="fas fa-bars text-xl"></i>
</button>
<button class="hidden md:block bg-gradient-to-r from-blue-500 to-green-500 text-white px-4 py-2 rounded-full font-medium hover:opacity-90 transition">
Subscribe
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="md:hidden hidden bg-white py-4 px-4 shadow-lg" id="mobile-menu">
<div class="flex flex-col space-y-3">
<a href="#home" class="text-gray-700 hover:text-blue-600 font-medium transition">Home</a>
<a href="#categories" class="text-gray-700 hover:text-blue-600 font-medium transition">Categories</a>
<a href="#trending" class="text-gray-700 hover:text-blue-600 font-medium transition">Trending</a>
<a href="#store" class="text-gray-700 hover:text-blue-600 font-medium transition">Store</a>
<a href="#about" class="text-gray-700 hover:text-blue-600 font-medium transition">About</a>
<button class="bg-gradient-to-r from-blue-500 to-green-500 text-white px-4 py-2 rounded-full font-medium hover:opacity-90 transition">
Subscribe
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="py-16 md:py-24 bg-gradient-to-r from-blue-50 to-green-50">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 fade-in">
<h2 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">
Cutting Edge <span class="gradient-text">Analysis</span> for the Modern Thinker
</h2>
<p class="text-lg text-gray-600 mb-6">
Sigma Trial delivers in-depth articles on politics, economics, AI, cybersecurity, and technology.
Stay ahead with our expert analysis.
</p>
<div class="flex space-x-4">
<button class="bg-gradient-to-r from-blue-500 to-green-500 text-white px-6 py-3 rounded-full font-medium hover:opacity-90 transition">
Explore Articles
</button>
<button class="border border-blue-500 text-blue-500 px-6 py-3 rounded-full font-medium hover:bg-blue-50 transition">
Learn More
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center fade-in">
<div class="relative w-full max-w-md">
<div class="absolute -top-6 -left-6 w-32 h-32 bg-blue-200 rounded-full opacity-50"></div>
<div class="absolute -bottom-6 -right-6 w-32 h-32 bg-green-200 rounded-full opacity-50"></div>
<div class="relative bg-white p-6 rounded-xl shadow-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-gradient-to-r from-blue-500 to-green-500 rounded-full flex items-center justify-center">
<span class="text-white font-bold text-xl">Σ</span>
</div>
<div class="ml-3">
<h4 class="font-bold text-gray-800">Today's Featured</h4>
<p class="text-sm text-gray-500">Updated 2 hours ago</p>
</div>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">The Future of AI in Political Campaigns</h3>
<p class="text-gray-600 mb-4">
How artificial intelligence is reshaping political strategies and voter targeting in the 2024 elections...
</p>
<div class="flex justify-between items-center">
<span class="text-sm text-blue-500 font-medium">Politics • AI</span>
<button class="text-blue-500 hover:text-blue-700">
<i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Categories Section -->
<section id="categories" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12 fade-in">
<h2 class="text-3xl font-bold text-gray-800 mb-3">Explore Our <span class="gradient-text">Categories</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Dive into our specialized content areas covering the most important topics shaping our world today.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Politics Card -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in" style="animation-delay: 0.1s;">
<div class="h-48 bg-gradient-to-r from-red-500 to-pink-500 flex items-center justify-center">
<i class="fas fa-landmark text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Politics</h3>
<p class="text-gray-600 mb-4">
In-depth analysis of global political developments, policy changes, and geopolitical shifts.
</p>
<button class="text-blue-500 font-medium flex items-center">
View Articles <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
<!-- Economics Card -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in" style="animation-delay: 0.2s;">
<div class="h-48 bg-gradient-to-r from-yellow-500 to-orange-500 flex items-center justify-center">
<i class="fas fa-chart-line text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Economics</h3>
<p class="text-gray-600 mb-4">
Market trends, fiscal policies, and economic theories explained for the modern professional.
</p>
<button class="text-blue-500 font-medium flex items-center">
View Articles <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
<!-- AI Card -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in" style="animation-delay: 0.3s;">
<div class="h-48 bg-gradient-to-r from-purple-500 to-indigo-500 flex items-center justify-center">
<i class="fas fa-robot text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Artificial Intelligence</h3>
<p class="text-gray-600 mb-4">
The latest breakthroughs in AI research, applications, and ethical considerations.
</p>
<button class="text-blue-500 font-medium flex items-center">
View Articles <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
<!-- Cybersecurity Card -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in" style="animation-delay: 0.4s;">
<div class="h-48 bg-gradient-to-r from-green-500 to-teal-500 flex items-center justify-center">
<i class="fas fa-shield-alt text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Cybersecurity</h3>
<p class="text-gray-600 mb-4">
Protecting digital assets in an increasingly connected world with expert security insights.
</p>
<button class="text-blue-500 font-medium flex items-center">
View Articles <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
<!-- Programming Card -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in" style="animation-delay: 0.5s;">
<div class="h-48 bg-gradient-to-r from-blue-500 to-cyan-500 flex items-center justify-center">
<i class="fas fa-code text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Programming & Tech</h3>
<p class="text-gray-600 mb-4">
Cutting-edge technologies, programming languages, and development methodologies.
</p>
<button class="text-blue-500 font-medium flex items-center">
View Articles <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
<!-- History Card -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in" style="animation-delay: 0.5s;">
<div class="h-48 bg-gradient-to-r from-amber-500 to-orange-500 flex items-center justify-center">
<i class="fas fa-history text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">History</h3>
<p class="text-gray-600 mb-4">
Exploring historical events and their impact on modern politics, technology and society.
</p>
<button class="text-blue-500 font-medium flex items-center">
View Articles <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
<!-- Newsletter Card -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in" style="animation-delay: 0.6s;">
<div class="h-48 bg-gradient-to-r from-gray-800 to-gray-600 flex items-center justify-center">
<i class="fas fa-envelope-open-text text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Weekly Digest</h3>
<p class="text-gray-600 mb-4">
Get our best articles delivered straight to your inbox every week.
</p>
<div class="flex">
<input type="email" placeholder="Your email" class="flex-grow px-4 py-2 border border-gray-300 rounded-l-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
<button class="bg-blue-500 text-white px-4 py-2 rounded-r-lg hover:bg-blue-600 transition">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trending Articles -->
<section id="trending" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12 fade-in">
<h2 class="text-3xl font-bold text-gray-800 mb-3"><span class="gradient-text">Trending</span> This Week</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
The articles our readers are engaging with most this week across all categories.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8 mb-8">
<!-- Featured Article -->
<div class="lg:col-span-2 bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in">
<div class="md:flex">
<div class="md:w-1/2 h-64 md:h-auto bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');"></div>
<div class="md:w-1/2 p-6">
<div class="flex items-center mb-3">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Featured</span>
<span class="text-gray-500 text-sm ml-2">15 min read</span>
</div>
<h3 class="text-2xl font-bold text-gray-800 mb-3">Quantum Computing Breakthrough: What It Means for Cybersecurity</h3>
<p class="text-gray-600 mb-4">
Researchers have achieved a major milestone in quantum computing that could render current encryption methods obsolete. We examine the implications for global cybersecurity.
</p>
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-8 h-8 bg-gray-300 rounded-full"></div>
<div class="ml-2">
<p class="text-sm font-medium text-gray-800">Dr. Sarah Chen</p>
<p class="text-xs text-gray-500">Cybersecurity Expert</p>
</div>
</div>
<span class="text-sm text-blue-500 font-medium">Cybersecurity • Tech</span>
</div>
</div>
</div>
</div>
<!-- Second Article -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1642790559316-8c62b1f827fe?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');"></div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded">Trending</span>
<span class="text-gray-500 text-sm ml-2">8 min read</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">The Economic Impact of AI Regulation in the EU</h3>
<p class="text-gray-600 mb-4">
How the new EU AI Act could shape the competitive landscape for tech companies and startups across Europe.
</p>
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-8 h-8 bg-gray-300 rounded-full"></div>
<div class="ml-2">
<p class="text-sm font-medium text-gray-800">Markus Weber</p>
<p class="text-xs text-gray-500">Economic Analyst</p>
</div>
</div>
<span class="text-sm text-blue-500 font-medium">Economics • AI</span>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Article 3 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in" style="animation-delay: 0.1s;">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');"></div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="text-gray-500 text-sm">12 min read</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Rust vs Go: Which Language Dominates in 2024?</h3>
<p class="text-gray-600 mb-4">
A comprehensive comparison of performance, ecosystem, and adoption trends for these two rising stars in systems programming.
</p>
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-8 h-8 bg-gray-300 rounded-full"></div>
<div class="ml-2">
<p class="text-sm font-medium text-gray-800">Alex Johnson</p>
<p class="text-xs text-gray-500">Senior Developer</p>
</div>
</div>
<span class="text-sm text-blue-500 font-medium">Programming</span>
</div>
</div>
</div>
<!-- Article 4 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in" style="animation-delay: 0.2s;">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');"></div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="text-gray-500 text-sm">10 min read</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">The Geopolitics of Semiconductor Manufacturing</h3>
<p class="text-gray-600 mb-4">
How the global chip shortage has become a focal point in US-China relations and what it means for tech sovereignty.
</p>
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-8 h-8 bg-gray-300 rounded-full"></div>
<div class="ml-2">
<p class="text-sm font-medium text-gray-800">Priya Patel</p>
<p class="text-xs text-gray-500">Political Analyst</p>
</div>
</div>
<span class="text-sm text-blue-500 font-medium">Politics • Tech</span>
</div>
</div>
</div>
<!-- Article 5 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in" style="animation-delay: 0.3s;">
<div class="h-48 bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');"></div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="text-gray-500 text-sm">7 min read</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Zero Trust Security: Implementation Strategies</h3>
<p class="text-gray-600 mb-4">
Practical steps for organizations transitioning to a Zero Trust architecture in an era of sophisticated cyber threats.
</p>
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-8 h-8 bg-gray-300 rounded-full"></div>
<div class="ml-2">
<p class="text-sm font-medium text-gray-800">David Kim</p>
<p class="text-xs text-gray-500">Security Consultant</p>
</div>
</div>
<span class="text-sm text-blue-500 font-medium">Cybersecurity</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border border-blue-500 text-blue-500 px-6 py-3 rounded-full font-medium hover:bg-blue-50 transition">
View All Trending Articles
</button>
</div>
</div>
</section>
<!-- Store Section -->
<section id="store" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12 fade-in">
<h2 class="text-3xl font-bold text-gray-800 mb-3">Sigma <span class="gradient-text">Store</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Premium digital and physical goods for thinkers and builders
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Digital Product 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in">
<div class="h-48 bg-gradient-to-r from-blue-500 to-purple-500 flex items-center justify-center">
<i class="fas fa-book-open text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Premium Research Papers</h3>
<p class="text-gray-600 mb-4">
In-depth analysis reports on emerging technologies and geopolitical trends.
</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-800">$29.99</span>
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600 transition">
Add to Cart
</button>
</div>
</div>
</div>
<!-- Digital Product 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in">
<div class="h-48 bg-gradient-to-r from-green-500 to-teal-500 flex items-center justify-center">
<i class="fas fa-video text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Video Courses</h3>
<p class="text-gray-600 mb-4">
Expert-led courses on cybersecurity, AI ethics, and political analysis.
</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-800">$99.99</span>
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600 transition">
Add to Cart
</button>
</div>
</div>
</div>
<!-- Physical Product 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in">
<div class="h-48 bg-gradient-to-r from-amber-500 to-orange-500 flex items-center justify-center">
<i class="fas fa-tshirt text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Sigma Apparel</h3>
<p class="text-gray-600 mb-4">
Premium quality t-shirts and hoodies with minimalist Sigma designs.
</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-800">$34.99</span>
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600 transition">
Add to Cart
</button>
</div>
</div>
</div>
<!-- Physical Product 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in">
<div class="h-48 bg-gradient-to-r from-red-500 to-pink-500 flex items-center justify-center">
<i class="fas fa-mug-hot text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Sigma Mug</h3>
<p class="text-gray-600 mb-4">
Ceramic mug with the Sigma logo - perfect for your morning coffee.
</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-800">$19.99</span>
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600 transition">
Add to Cart
</button>
</div>
</div>
</div>
<!-- Subscription -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in">
<div class="h-48 bg-gradient-to-r from-gray-800 to-gray-600 flex items-center justify-center">
<i class="fas fa-gem text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Premium Membership</h3>
<p class="text-gray-600 mb-4">
Unlimited access to all content, exclusive reports, and member discounts.
</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-800">$9.99/mo</span>
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600 transition">
Subscribe
</button>
</div>
</div>
</div>
<!-- Gift Card -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover fade-in">
<div class="h-48 bg-gradient-to-r from-purple-500 to-indigo-500 flex items-center justify-center">
<i class="fas fa-gift text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Gift Card</h3>
<p class="text-gray-600 mb-4">
Give the gift of knowledge with a Sigma Trial digital gift card.
</p>
<div class="flex justify-between items-center">
<select class="border rounded-lg px-2 py-1">
<option>$25</option>
<option>$50</option>
<option>$100</option>
</select>
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600 transition">
Purchase
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter Section -->
<section class="py-16 bg-gradient-to-r from-blue-500 to-green-500 text-white">
<div class="container mx-auto px-4 text-center">
<div class="max-w-2xl mx-auto fade-in">
<h2 class="text-3xl font-bold mb-4">Stay Updated with Sigma Trial</h2>
<p class="text-xl mb-8 opacity-90">
Get our most insightful articles delivered directly to your inbox twice a week.
</p>
<div class="flex flex-col sm:flex-row gap-4 max-w-lg mx-auto">
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-lg text-gray-800 focus:outline-none focus:ring-2 focus:ring-white">
<button class="bg-white text-blue-600 px-6 py-3 rounded-lg font-bold hover:bg-gray-100 transition">
Subscribe Now
</button>
</div>
<p class="text-sm mt-4 opacity-75">
We respect your privacy. Unsubscribe at any time.
</p>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 fade-in">
<h2 class="text-3xl font-bold text-gray-800 mb-6">About <span class="gradient-text">Sigma Trial</span></h2>
<p class="text-gray-600 mb-4">
Founded in 2022, Sigma Trial was created to fill the gap in high-quality, analytical content covering the intersection of technology, policy, and economics.
</p>
<p class="text-gray-600 mb-4">
Our team of experts brings decades of combined experience across industries to deliver insights you won't find anywhere else.
</p>
<p class="text-gray-600 mb-6">
We believe in data-driven analysis, clear communication of complex ideas, and maintaining intellectual independence from corporate or political influences.
</p>
<button class="bg-gradient-to-r from-blue-500 to-green-500 text-white px-6 py-3 rounded-full font-medium hover:opacity-90 transition">
Meet Our Team
</button>
</div>
<div class="md:w-1/2 md:pl-12 fade-in">
<div class="grid grid-cols-2 gap-4">
<div class="bg-blue-50 p-6 rounded-xl">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-users text-blue-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">250K+</h3>
<p class="text-gray-600">Monthly Readers</p>
</div>
<div class="bg-green-50 p-6 rounded-xl">
<div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-file-alt text-green-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">1.2K+</h3>
<p class="text-gray-600">Published Articles</p>
</div>
<div class="bg-purple-50 p-6 rounded-xl">
<div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-globe text-purple-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">150+</h3>
<p class="text-gray-600">Countries Reached</p>
</div>
<div class="bg-yellow-50 p-6 rounded-xl">
<div class="w-12 h-12 bg-yellow-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-medal text-yellow-500 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">25+</h3>
<p class="text-gray-600">Industry Awards</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-10 h-10 bg-gradient-to-r from-blue-500 to-green-500 rounded-full flex items-center justify-center">
<span class="text-white font-bold text-xl">Σ</span>
</div>
<h3 class="text-xl font-bold">Sigma Trial</h3>
</div>
<p class="text-gray-400 mb-4">
Delivering cutting-edge analysis at the intersection of technology, policy, and economics.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram text-xl"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Categories</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Politics</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Economics</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Artificial Intelligence</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Cybersecurity</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Programming & Tech</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">History</a></li>
<li><a href="#store" class="text-gray-400 hover:text-white transition">Store</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Our Team</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Advertise</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Cookie Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">GDPR Compliance</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">
© 2023 Sigma Trial. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Sitemap</a>
<a href="#" class="text-gray-400 hover:text-white transition">Accessibility</a>
<a href="#" class="text-gray-400 hover:text-white transition">FAQ</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Add fade-in animation to elements as they come into view
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fadeIn');
}
});
}, {
threshold: 0.1
});
fadeElements.forEach(element => {
fadeInObserver.observe(element);
});
</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=Xcoder2020/sigma-trial-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |