Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>LLM Research Hub - Cutting Edge Language Model Insights</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> | |
.gradient-bg { | |
background: linear-gradient(135deg, #6e8efb, #a777e3); | |
} | |
.card-hover:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.fade-in { | |
animation: fadeIn 1s ease-in; | |
} | |
@keyframes fadeIn { | |
from { opacity: 0; } | |
to { opacity: 1; } | |
} | |
.typewriter { | |
overflow: hidden; | |
border-right: .15em solid #6e8efb; | |
white-space: nowrap; | |
margin: 0 auto; | |
letter-spacing: .15em; | |
animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite; | |
} | |
@keyframes typing { | |
from { width: 0 } | |
to { width: 100% } | |
} | |
@keyframes blink-caret { | |
from, to { border-color: transparent } | |
50% { border-color: #6e8efb; } | |
} | |
</style> | |
</head> | |
<body class="font-sans bg-gray-50"> | |
<!-- Navigation --> | |
<nav class="bg-white shadow-lg sticky top-0 z-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 flex items-center"> | |
<i class="fas fa-brain text-purple-600 text-2xl mr-2"></i> | |
<span class="text-xl font-bold text-gray-900">LLM Research Hub</span> | |
</div> | |
</div> | |
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> | |
<a href="#features" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium">Features</a> | |
<a href="#research" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium">Research</a> | |
<a href="#insights" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium">Insights</a> | |
<a href="#contact" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium">Contact</a> | |
</div> | |
<div class="-mr-2 flex items-center md:hidden"> | |
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-purple-500" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button"> | |
<span class="sr-only">Open main menu</span> | |
<i class="fas fa-bars"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Mobile menu --> | |
<div class="hidden md:hidden" id="mobile-menu"> | |
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
<a href="#features" class="text-gray-900 hover:text-purple-600 block px-3 py-2 text-base font-medium">Features</a> | |
<a href="#research" class="text-gray-900 hover:text-purple-600 block px-3 py-2 text-base font-medium">Research</a> | |
<a href="#insights" class="text-gray-900 hover:text-purple-600 block px-3 py-2 text-base font-medium">Insights</a> | |
<a href="#contact" class="text-gray-900 hover:text-purple-600 block px-3 py-2 text-base font-medium">Contact</a> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<div class="gradient-bg text-white"> | |
<div class="max-w-7xl mx-auto py-24 px-4 sm:px-6 lg:px-8"> | |
<div class="text-center"> | |
<h1 class="text-4xl md:text-6xl font-extrabold mb-6 fade-in"> | |
<span class="typewriter">Advancing Language Model Research</span> | |
</h1> | |
<p class="mt-6 text-xl max-w-3xl mx-auto"> | |
Discover cutting-edge insights, research papers, and practical applications of large language models. | |
</p> | |
<div class="mt-10 flex justify-center space-x-4"> | |
<a href="#research" class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-purple-700 bg-white hover:bg-gray-100 md:py-4 md:text-lg md:px-10 transition duration-300"> | |
Explore Research | |
</a> | |
<a href="#contact" class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-800 hover:bg-purple-900 md:py-4 md:text-lg md:px-10 transition duration-300"> | |
Get Updates | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Features Section --> | |
<div id="features" class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
Comprehensive LLM Resources | |
</h2> | |
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto"> | |
Everything you need to stay at the forefront of language model research and development. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3"> | |
<div class="card-hover bg-white rounded-lg shadow-lg p-8 transition duration-300"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-6"> | |
<i class="fas fa-book-open text-xl"></i> | |
</div> | |
<h3 class="text-lg font-medium text-gray-900 mb-3">Research Papers</h3> | |
<p class="text-gray-500"> | |
Access the latest academic papers and technical reports on large language models, including architecture, training methods, and evaluation metrics. | |
</p> | |
</div> | |
<div class="card-hover bg-white rounded-lg shadow-lg p-8 transition duration-300"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-6"> | |
<i class="fas fa-chart-line text-xl"></i> | |
</div> | |
<h3 class="text-lg font-medium text-gray-900 mb-3">Performance Benchmarks</h3> | |
<p class="text-gray-500"> | |
Compare model performance across different tasks and datasets with our comprehensive benchmarking tools and visualizations. | |
</p> | |
</div> | |
<div class="card-hover bg-white rounded-lg shadow-lg p-8 transition duration-300"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-6"> | |
<i class="fas fa-code text-xl"></i> | |
</div> | |
<h3 class="text-lg font-medium text-gray-900 mb-3">Implementation Guides</h3> | |
<p class="text-gray-500"> | |
Step-by-step tutorials and code examples for implementing and fine-tuning language models in various applications. | |
</p> | |
</div> | |
<div class="card-hover bg-white rounded-lg shadow-lg p-8 transition duration-300"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-6"> | |
<i class="fas fa-users text-xl"></i> | |
</div> | |
<h3 class="text-lg font-medium text-gray-900 mb-3">Community Insights</h3> | |
<p class="text-gray-500"> | |
Learn from the collective experience of researchers and practitioners through case studies and community-contributed knowledge. | |
</p> | |
</div> | |
<div class="card-hover bg-white rounded-lg shadow-lg p-8 transition duration-300"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-6"> | |
<i class="fas fa-lightbulb text-xl"></i> | |
</div> | |
<h3 class="text-lg font-medium text-gray-900 mb-3">Emerging Techniques</h3> | |
<p class="text-gray-500"> | |
Stay updated on the latest innovations in prompt engineering, few-shot learning, and other advanced techniques for working with LLMs. | |
</p> | |
</div> | |
<div class="card-hover bg-white rounded-lg shadow-lg p-8 transition duration-300"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-6"> | |
<i class="fas fa-shield-alt text-xl"></i> | |
</div> | |
<h3 class="text-lg font-medium text-gray-900 mb-3">Ethical Considerations</h3> | |
<p class="text-gray-500"> | |
Explore research and guidelines on bias mitigation, safety protocols, and responsible deployment of language models. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Research Highlights Section --> | |
<div id="research" class="py-16 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
Latest Research Highlights | |
</h2> | |
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto"> | |
Key findings and breakthroughs in language model research | |
</p> | |
</div> | |
<div class="grid grid-cols-1 gap-8 md:grid-cols-2"> | |
<div class="card-hover bg-white rounded-lg shadow-lg overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex items-center mb-4"> | |
<span class="bg-purple-100 text-purple-800 text-xs font-semibold px-2.5 py-0.5 rounded">New</span> | |
<span class="text-sm text-gray-500 ml-2">Published: June 2023</span> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Efficient Training Methods for Large-Scale Models</h3> | |
<p class="text-gray-500 mb-4"> | |
This paper introduces novel techniques for reducing the computational cost of training while maintaining model performance, potentially cutting training costs by up to 40%. | |
</p> | |
<div class="flex items-center justify-between"> | |
<span class="text-sm font-medium text-purple-600">Read Paper →</span> | |
<div class="flex space-x-2"> | |
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Training</span> | |
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Optimization</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="card-hover bg-white rounded-lg shadow-lg overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex items-center mb-4"> | |
<span class="bg-green-100 text-green-800 text-xs font-semibold px-2.5 py-0.5 rounded">Updated</span> | |
<span class="text-sm text-gray-500 ml-2">Published: May 2023</span> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Multimodal Language Model Architectures</h3> | |
<p class="text-gray-500 mb-4"> | |
Comprehensive analysis of architectures that combine text with other modalities (images, audio) and their performance on cross-modal understanding tasks. | |
</p> | |
<div class="flex items-center justify-between"> | |
<span class="text-sm font-medium text-purple-600">Read Paper →</span> | |
<div class="flex space-x-2"> | |
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Multimodal</span> | |
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Architecture</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="card-hover bg-white rounded-lg shadow-lg overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex items-center mb-4"> | |
<span class="bg-blue-100 text-blue-800 text-xs font-semibold px-2.5 py-0.5 rounded">Case Study</span> | |
<span class="text-sm text-gray-500 ml-2">Published: April 2023</span> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Real-World Deployment Challenges</h3> | |
<p class="text-gray-500 mb-4"> | |
Analysis of practical issues encountered when deploying LLMs in production environments, including latency optimization and cost management strategies. | |
</p> | |
<div class="flex items-center justify-between"> | |
<span class="text-sm font-medium text-purple-600">Read Study →</span> | |
<div class="flex space-x-2"> | |
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Deployment</span> | |
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Production</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="card-hover bg-white rounded-lg shadow-lg overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex items-center mb-4"> | |
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold px-2.5 py-0.5 rounded">Survey</span> | |
<span class="text-sm text-gray-500 ml-2">Published: March 2023</span> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Emerging Applications in Healthcare</h3> | |
<p class="text-gray-500 mb-4"> | |
Comprehensive review of how language models are being adapted for medical documentation, diagnosis support, and patient communication. | |
</p> | |
<div class="flex items-center justify-between"> | |
<span class="text-sm font-medium text-purple-600">Read Survey →</span> | |
<div class="flex space-x-2"> | |
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Healthcare</span> | |
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Applications</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="mt-12 text-center"> | |
<a href="#" class="px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-600 hover:bg-purple-700 transition duration-300"> | |
View All Research | |
</a> | |
</div> | |
</div> | |
</div> | |
<!-- Insights Section --> | |
<div id="insights" class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
Expert Insights & Analysis | |
</h2> | |
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto"> | |
Deep dives into the most important topics in language model research | |
</p> | |
</div> | |
<div class="grid grid-cols-1 gap-8 lg:grid-cols-3"> | |
<div class="lg:col-span-2"> | |
<div class="card-hover bg-gray-50 rounded-lg shadow-lg overflow-hidden transition duration-300"> | |
<div class="md:flex"> | |
<div class="md:flex-shrink-0"> | |
<img class="h-48 w-full object-cover md:w-48" src="https://images.unsplash.com/photo-1617791160536-598cf32026fb?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Model architecture visualization"> | |
</div> | |
<div class="p-8"> | |
<div class="uppercase tracking-wide text-sm text-purple-600 font-semibold mb-1">Technical Analysis</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Understanding Transformer Variants</h3> | |
<p class="text-gray-500 mb-4"> | |
Comparative analysis of different transformer architectures (vanilla, sparse, memory-augmented) and their trade-offs in terms of performance, memory usage, and training stability. | |
</p> | |
<div class="flex items-center"> | |
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/47.jpg" alt="Author"> | |
<div class="ml-3"> | |
<p class="text-sm font-medium text-gray-900">Dr. Sarah Chen</p> | |
<p class="text-sm text-gray-500">Senior Research Scientist</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div> | |
<div class="card-hover bg-gray-50 rounded-lg shadow-lg p-6 transition duration-300 h-full"> | |
<div class="flex items-center mb-4"> | |
<div class="flex-shrink-0 bg-purple-100 rounded-md p-2"> | |
<i class="fas fa-chart-pie text-purple-600"></i> | |
</div> | |
<div class="ml-3"> | |
<h3 class="text-lg font-bold text-gray-900">Benchmark Results</h3> | |
</div> | |
</div> | |
<p class="text-gray-500 mb-4"> | |
Latest performance metrics comparing top language models across 12 different NLP tasks, including reading comprehension, summarization, and commonsense reasoning. | |
</p> | |
<div class="mt-auto"> | |
<a href="#" class="text-sm font-medium text-purple-600 hover:text-purple-500">View Full Report →</a> | |
</div> | |
</div> | |
</div> | |
<div> | |
<div class="card-hover bg-gray-50 rounded-lg shadow-lg p-6 transition duration-300 h-full"> | |
<div class="flex items-center mb-4"> | |
<div class="flex-shrink-0 bg-purple-100 rounded-md p-2"> | |
<i class="fas fa-tools text-purple-600"></i> | |
</div> | |
<div class="ml-3"> | |
<h3 class="text-lg font-bold text-gray-900">Tooling Updates</h3> | |
</div> | |
</div> | |
<p class="text-gray-500 mb-4"> | |
Overview of newly released libraries and frameworks for working with large language models, including fine-tuning tools and deployment solutions. | |
</p> | |
<div class="mt-auto"> | |
<a href="#" class="text-sm font-medium text-purple-600 hover:text-purple-500">Explore Tools →</a> | |
</div> | |
</div> | |
</div> | |
<div class="lg:col-span-2"> | |
<div class="card-hover bg-gray-50 rounded-lg shadow-lg overflow-hidden transition duration-300"> | |
<div class="md:flex"> | |
<div class="md:flex-shrink-0"> | |
<img class="h-48 w-full object-cover md:w-48" src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Ethical considerations"> | |
</div> | |
<div class="p-8"> | |
<div class="uppercase tracking-wide text-sm text-purple-600 font-semibold mb-1">Ethics & Safety</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Mitigating Harmful Outputs</h3> | |
<p class="text-gray-500 mb-4"> | |
Comprehensive review of techniques for reducing toxic, biased, or otherwise harmful outputs from language models, with case studies from recent deployments. | |
</p> | |
<div class="flex items-center"> | |
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Author"> | |
<div class="ml-3"> | |
<p class="text-sm font-medium text-gray-900">Dr. James Wilson</p> | |
<p class="text-sm text-gray-500">AI Ethics Researcher</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Newsletter Section --> | |
<div class="gradient-bg text-white py-16"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center"> | |
<h2 class="text-3xl font-extrabold sm:text-4xl"> | |
Stay Updated with the Latest Research | |
</h2> | |
<p class="mt-4 max-w-2xl text-xl mx-auto"> | |
Join our newsletter to receive monthly updates on new papers, tools, and insights. | |
</p> | |
<div class="mt-8 max-w-xl mx-auto"> | |
<form class="sm:flex"> | |
<label for="email-address" class="sr-only">Email address</label> | |
<input id="email-address" name="email" type="email" autocomplete="email" required class="w-full px-5 py-3 placeholder-gray-500 focus:ring-2 focus:ring-purple-500 focus:border-transparent sm:max-w-xs rounded-md" placeholder="Enter your email"> | |
<div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3 sm:flex-shrink-0"> | |
<button type="submit" class="w-full flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-purple-700 bg-white hover:bg-gray-100 transition duration-300"> | |
Subscribe | |
</button> | |
</div> | |
</form> | |
<p class="mt-3 text-sm text-purple-100"> | |
We respect your privacy. Unsubscribe at any time. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Contact Section --> | |
<div id="contact" class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="lg:text-center"> | |
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
Get In Touch | |
</h2> | |
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
Have questions about our research or want to collaborate? Reach out to our team. | |
</p> | |
</div> | |
<div class="mt-16"> | |
<div class="grid grid-cols-1 gap-8 md:grid-cols-2"> | |
<div class="card-hover bg-gray-50 rounded-lg shadow-lg p-8 transition duration-300"> | |
<h3 class="text-lg font-medium text-gray-900 mb-4">Contact Information</h3> | |
<div class="mt-6"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0"> | |
<i class="fas fa-envelope text-purple-600"></i> | |
</div> | |
<div class="ml-3"> | |
<p class="text-sm font-medium text-gray-900">Email</p> | |
<p class="text-sm text-gray-500">research@llmhub.org</p> | |
</div> | |
</div> | |
<div class="mt-4 flex items-start"> | |
<div class="flex-shrink-0"> | |
<i class="fas fa-map-marker-alt text-purple-600"></i> | |
</div> | |
<div class="ml-3"> | |
<p class="text-sm font-medium text-gray-900">Office</p> | |
<p class="text-sm text-gray-500">123 Research Park, San Francisco, CA 94107</p> | |
</div> | |
</div> | |
<div class="mt-4 flex items-start"> | |
<div class="flex-shrink-0"> | |
<i class="fas fa-phone-alt text-purple-600"></i> | |
</div> | |
<div class="ml-3"> | |
<p class="text-sm font-medium text-gray-900">Phone</p> | |
<p class="text-sm text-gray-500">+1 (555) 123-4567</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="card-hover bg-gray-50 rounded-lg shadow-lg p-8 transition duration-300"> | |
<h3 class="text-lg font-medium text-gray-900 mb-4">Send Us a Message</h3> | |
<form class="mt-6 space-y-6"> | |
<div> | |
<label for="name" class="block text-sm font-medium text-gray-700">Name</label> | |
<div class="mt-1"> | |
<input type="text" name="name" id="name" class="py-3 px-4 block w-full border-gray-300 rounded-md focus:ring-purple-500 focus:border-purple-500" placeholder="Your name"> | |
</div> | |
</div> | |
<div> | |
<label for="email" class="block text-sm font-medium text-gray-700">Email</label> | |
<div class="mt-1"> | |
<input type="email" name="email" id="email" class="py-3 px-4 block w-full border-gray-300 rounded-md focus:ring-purple-500 focus:border-purple-500" placeholder="your.email@example.com"> | |
</div> | |
</div> | |
<div> | |
<label for="message" class="block text-sm font-medium text-gray-700">Message</label> | |
<div class="mt-1"> | |
<textarea id="message" name="message" rows="4" class="py-3 px-4 block w-full border-gray-300 rounded-md focus:ring-purple-500 focus:border-purple-500" placeholder="Your message"></textarea> | |
</div> | |
</div> | |
<div> | |
<button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500 transition duration-300"> | |
Send Message | |
</button> | |
</div> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Footer --> | |
<footer class="bg-gray-900 text-white"> | |
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase mb-4">Research</h3> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Papers</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Benchmarks</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Methodologies</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Datasets</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase mb-4">Resources</h3> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Tools</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Tutorials</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">APIs</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Documentation</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase mb-4">Community</h3> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Forums</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Events</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Contributors</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Partners</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase mb-4">Company</h3> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">About</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Team</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Careers</a></li> | |
<li><a href="#" class="text-base text-gray-300 hover:text-white">Contact</a></li> | |
</ul> | |
</div> | |
</div> | |
<div class="mt-12 border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-twitter text-xl"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-github text-xl"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-linkedin text-xl"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-youtube text-xl"></i> | |
</a> | |
</div> | |
<p class="mt-4 md:mt-0 text-base text-gray-400"> | |
© 2023 LLM Research Hub. All rights reserved. | |
</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Mobile menu toggle | |
document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
const menu = document.getElementById('mobile-menu'); | |
if (menu.classList.contains('hidden')) { | |
menu.classList.remove('hidden'); | |
} else { | |
menu.classList.add('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 | |
const mobileMenu = document.getElementById('mobile-menu'); | |
if (!mobileMenu.classList.contains('hidden')) { | |
mobileMenu.classList.add('hidden'); | |
} | |
} | |
}); | |
}); | |
// Animation on scroll | |
const observerOptions = { | |
threshold: 0.1 | |
}; | |
const observer = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.classList.add('animate-fadeIn'); | |
} | |
}); | |
}, observerOptions); | |
document.querySelectorAll('.card-hover').forEach(card => { | |
observer.observe(card); | |
}); | |
</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=Its3sticks/llmresearch" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |