Spaces:
Running
make me a website Core MVP Features:
Browse filesTop Navigation Bar
Brand logo: “Waves! 🌊” on the left.
Menu items: [H] Home, [G] Games, [A] AI.
A small settings (⚙️) icon on the right.
Rounded glass effect for the navbar (like macOS “liquid” style).
Main Section
Centered large heading: “Hello!”
Beneath it: a sleek search bar with placeholder text “Have anything in mind?”
On the right of the search bar: a small “Ctrl + E” key hint.
Below the search bar: a “+” button with soft hover animation (used to add or create new things).
Background
Dark gradient background with subtle grid lines.
Slight glow behind center elements.
Smooth fade-in effect when the page loads.
Interactions
Hover effects on buttons and inputs (gentle glow or lift).
Responsive layout that centers everything both vertically and horizontally.
Keyboard shortcut (Ctrl + E) focuses on the search input.
Visual Style
Font: modern rounded sans-serif (like “Inter” or “Satoshi”).
Colors: #ffffff text, #0f0f0f background, #2b2b2b elements.
Slight transparency on containers for depth.
Stretch Goals (for future versions):
Animated particle or line background.
User authentication (for devs like “Rafa” or “Tristan” to unlock premium).
Floating widgets (Music, Games, AI apps).
Light/Dark mode toggle.
Tech Stack Recommendation:
HTML, CSS (Tailwind or custom CSS grid)
JS (for interactivity and keyboard shortcuts)
Optional: React or Next.js for component structure and scalability
- README.md +8 -5
- index.html +115 -18
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title: Oceanic Command Center
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Oceanic Command Center 🌊
|
| 3 |
+
colorFrom: gray
|
| 4 |
+
colorTo: purple
|
| 5 |
+
emoji: 🐳
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://deepsite.hf.co).
|
|
@@ -1,19 +1,116 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Waves! 🌊</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 10 |
+
<style>
|
| 11 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
| 12 |
+
|
| 13 |
+
body {
|
| 14 |
+
font-family: 'Inter', sans-serif;
|
| 15 |
+
background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
|
| 16 |
+
background-attachment: fixed;
|
| 17 |
+
color: #ffffff;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.glass-nav {
|
| 21 |
+
backdrop-filter: blur(12px);
|
| 22 |
+
background-color: rgba(30, 30, 30, 0.7);
|
| 23 |
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
.search-glow {
|
| 27 |
+
box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
.plus-btn {
|
| 31 |
+
transition: all 0.3s ease;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
.plus-btn:hover {
|
| 35 |
+
transform: rotate(90deg) scale(1.1);
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
.fade-in {
|
| 39 |
+
animation: fadeIn 0.8s ease-out forwards;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
@keyframes fadeIn {
|
| 43 |
+
from { opacity: 0; transform: translateY(10px); }
|
| 44 |
+
to { opacity: 1; transform: translateY(0); }
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
.grid-bg {
|
| 48 |
+
background-image:
|
| 49 |
+
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
|
| 50 |
+
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
|
| 51 |
+
background-size: 20px 20px;
|
| 52 |
+
}
|
| 53 |
+
</style>
|
| 54 |
+
</head>
|
| 55 |
+
<body class="grid-bg min-h-screen">
|
| 56 |
+
<!-- Navigation Bar -->
|
| 57 |
+
<nav class="glass-nav p-4 rounded-xl mx-4 mt-4 flex justify-between items-center">
|
| 58 |
+
<div class="flex items-center space-x-2">
|
| 59 |
+
<span class="text-2xl font-bold bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">Waves! 🌊</span>
|
| 60 |
+
</div>
|
| 61 |
+
|
| 62 |
+
<div class="hidden md:flex space-x-6">
|
| 63 |
+
<a href="#" class="flex items-center space-x-1 px-3 py-1 rounded-lg hover:bg-gray-800 transition-all">
|
| 64 |
+
<span class="text-gray-300 font-medium">[H] Home</span>
|
| 65 |
+
</a>
|
| 66 |
+
<a href="#" class="flex items-center space-x-1 px-3 py-1 rounded-lg hover:bg-gray-800 transition-all">
|
| 67 |
+
<span class="text-gray-300 font-medium">[G] Games</span>
|
| 68 |
+
</a>
|
| 69 |
+
<a href="#" class="flex items-center space-x-1 px-3 py-1 rounded-lg hover:bg-gray-800 transition-all">
|
| 70 |
+
<span class="text-gray-300 font-medium">[A] AI</span>
|
| 71 |
+
</a>
|
| 72 |
+
</div>
|
| 73 |
+
|
| 74 |
+
<button class="p-2 rounded-full hover:bg-gray-800 transition-all">
|
| 75 |
+
<i data-feather="settings"></i>
|
| 76 |
+
</button>
|
| 77 |
+
</nav>
|
| 78 |
+
|
| 79 |
+
<!-- Main Content -->
|
| 80 |
+
<main class="container mx-auto px-4 flex flex-col items-center justify-center min-h-[80vh] fade-in">
|
| 81 |
+
<h1 class="text-6xl md:text-7xl font-bold mb-8 bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">Hello!</h1>
|
| 82 |
+
|
| 83 |
+
<div class="w-full max-w-2xl relative">
|
| 84 |
+
<div class="flex items-center">
|
| 85 |
+
<input
|
| 86 |
+
type="text"
|
| 87 |
+
id="search"
|
| 88 |
+
placeholder="Have anything in mind?"
|
| 89 |
+
class="w-full px-6 py-4 rounded-2xl bg-gray-900 border border-gray-700 focus:outline-none focus:border-blue-500 focus:search-glow transition-all"
|
| 90 |
+
>
|
| 91 |
+
<span class="absolute right-4 text-gray-400 text-sm hidden md:block">Ctrl + E</span>
|
| 92 |
+
</div>
|
| 93 |
+
|
| 94 |
+
<button class="plus-btn absolute -bottom-6 left-1/2 transform -translate-x-1/2 bg-blue-600 hover:bg-blue-700 text-white p-3 rounded-full shadow-lg">
|
| 95 |
+
<i data-feather="plus"></i>
|
| 96 |
+
</button>
|
| 97 |
+
</div>
|
| 98 |
+
</main>
|
| 99 |
+
|
| 100 |
+
<script>
|
| 101 |
+
document.addEventListener('DOMContentLoaded', () => {
|
| 102 |
+
feather.replace();
|
| 103 |
+
|
| 104 |
+
// Ctrl+E shortcut for search
|
| 105 |
+
document.addEventListener('keydown', (e) => {
|
| 106 |
+
if (e.ctrlKey && e.key === 'e') {
|
| 107 |
+
e.preventDefault();
|
| 108 |
+
document.getElementById('search').focus();
|
| 109 |
+
}
|
| 110 |
+
});
|
| 111 |
+
|
| 112 |
+
// Mobile menu toggle would go here in future versions
|
| 113 |
+
});
|
| 114 |
+
</script>
|
| 115 |
+
</body>
|
| 116 |
</html>
|