sigma-trial-2 / index.html
Xcoder2020's picture
add store section with some digital and physical goods - Initial Deployment
c9021b0 verified
<!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>