|
|
<!DOCTYPE html> |
|
|
<html lang="en" class="dark"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>NeuralNest | HTML5 Text AI</title> |
|
|
<link rel="stylesheet" href="style.css"> |
|
|
<script src="https://cdn.tailwindcss.com"></script> |
|
|
<script src="https://unpkg.com/feather-icons"></script> |
|
|
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
|
|
<script src="components/navbar.js"></script> |
|
|
<script src="components/model-card.js"></script> |
|
|
</head> |
|
|
<body class="bg-gray-100 dark:bg-gray-900 transition-colors duration-300"> |
|
|
<neural-navbar></neural-navbar> |
|
|
|
|
|
<main class="container mx-auto px-4 py-12"> |
|
|
<section class="text-center mb-16"> |
|
|
<h1 class="text-5xl font-bold text-gray-800 dark:text-white mb-4 animate-fade-in"> |
|
|
Build Your <span class="text-indigo-600 dark:text-indigo-400">HTML5</span> Text AI |
|
|
</h1> |
|
|
<p class="text-xl text-gray-600 dark:text-gray-300 max-w-2xl mx-auto"> |
|
|
NeuralNest helps you create and optimize custom AI models for text processing with HTML5 integration. |
|
|
</p> |
|
|
</section> |
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
<model-card |
|
|
title="Basic Text Analyzer" |
|
|
description="Simple model for text classification and sentiment analysis" |
|
|
icon="bar-chart-2" |
|
|
dificulty="easy"> |
|
|
</model-card> |
|
|
|
|
|
<model-card |
|
|
title="HTML5 Optimizer" |
|
|
description="AI that enhances HTML5 content structure and semantics" |
|
|
icon="code" |
|
|
dificulty="medium"> |
|
|
</model-card> |
|
|
|
|
|
<model-card |
|
|
title="Multilingual Transformer" |
|
|
description="Advanced model for multilingual text processing" |
|
|
icon="globe" |
|
|
dificulty="hard"> |
|
|
</model-card> |
|
|
</div> |
|
|
|
|
|
<section class="mt-20 bg-white dark:bg-gray-800 rounded-xl shadow-lg p-8 max-w-4xl mx-auto"> |
|
|
<h2 class="text-3xl font-semibold text-gray-800 dark:text-white mb-6">Create Your Model</h2> |
|
|
|
|
|
<div class="space-y-6"> |
|
|
<div> |
|
|
<label class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Model Name</label> |
|
|
<input type="text" class="w-full px-4 py-2 bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 text-gray-900 dark:text-white"> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Model Type</label> |
|
|
<select class="w-full px-4 py-2 bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 text-gray-900 dark:text-white"> |
|
|
<option>Text Classifier</option> |
|
|
<option>Text Generator</option> |
|
|
<option>Text Summarizer</option> |
|
|
<option>HTML5 Optimizer</option> |
|
|
</select> |
|
|
</div> |
|
|
|
|
|
<div class="pt-4"> |
|
|
<button class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-2 px-6 rounded-lg transition-colors duration-300 flex items-center gap-2"> |
|
|
<i data-feather="cpu"></i> |
|
|
Train Model |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
</main> |
|
|
|
|
|
<neural-footer></neural-footer> |
|
|
|
|
|
<script> |
|
|
feather.replace(); |
|
|
</script> |
|
|
<script src="components/footer.js"></script> |
|
|
<script src="script.js"></script> |
|
|
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
|
|
</body> |
|
|
</html> |