Wordlist-Video / index.html
Sami
Setup Docker-based Hugging Face Space with project directory
cf9c856
raw
history blame
5.47 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wordlist Video Projects</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #f9f9f9;
}
header {
background: linear-gradient(to right, #FFD700, #CCCCCC);
color: white;
text-align: center;
padding: 2rem;
border-radius: 8px;
margin-bottom: 2rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
margin: 0;
font-size: 2.5rem;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.projects-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
}
.project-card {
background-color: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.project-image {
height: 200px;
background-color: #eee;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: #666;
}
.project-content {
padding: 1.5rem;
}
.project-title {
margin-top: 0;
margin-bottom: 0.5rem;
font-size: 1.5rem;
}
.project-description {
color: #666;
margin-bottom: 1.5rem;
}
.project-link {
display: inline-block;
background-color: #FFD700;
color: white;
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 4px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.project-link:hover {
background-color: #E6C200;
}
footer {
text-align: center;
margin-top: 3rem;
padding-top: 1rem;
border-top: 1px solid #eee;
color: #666;
}
</style>
</head>
<body>
<header>
<h1>Wordlist Video Projects</h1>
<p>A collection of video editing and generation tools</p>
</header>
<main>
<div class="projects-container">
<!-- React Video Editor Projects -->
<div class="project-card">
<div class="project-image">🎬</div>
<div class="project-content">
<h2 class="project-title">Enhanced VideoGen Pro</h2>
<p class="project-description">A React-based video generation tool with advanced features.</p>
<a href="react/enhanced-videogen-pro.tsx" class="project-link">View Project</a>
</div>
</div>
<div class="project-card">
<div class="project-image">🎬</div>
<div class="project-content">
<h2 class="project-title">VideoGen Pro V2</h2>
<p class="project-description">Version 2 of the React video generation tool with additional features.</p>
<a href="react/enhanced-videogen-pro-v2.tsx" class="project-link">View Project</a>
</div>
</div>
<div class="project-card">
<div class="project-image">🎬</div>
<div class="project-content">
<h2 class="project-title">VideoGen Pro V3</h2>
<p class="project-description">Version 3 with hand movement capabilities for more interactive editing.</p>
<a href="react/enhanced-videogen-pro-v3-permite-mover-con-mano.tsx" class="project-link">View Project</a>
</div>
</div>
<!-- HTML Video Editor -->
<div class="project-card">
<div class="project-image">πŸŽ₯</div>
<div class="project-content">
<h2 class="project-title">HTML Video Editor</h2>
<p class="project-description">A simple HTML-based video editor with basic functionality.</p>
<a href="video-editor-html/index.html" class="project-link">View Project</a>
</div>
</div>
<div class="project-card">
<div class="project-image">πŸŽ₯</div>
<div class="project-content">
<h2 class="project-title">Advanced HTML Video Animation</h2>
<p class="project-description">Enhanced HTML video animation tool with additional features.</p>
<a href="video-editor-html/video-animation copy BUENO BUENO BUENO copy.html" class="project-link">View Project</a>
</div>
</div>
</div>
</main>
<footer>
<p>Β© 2023 Wordlist Video Projects. Hosted on Hugging Face Spaces.</p>
</footer>
</body>
</html>