Spaces:
Running
Running
Redesign my website
Browse files- README.md +8 -5
- index.html +146 -18
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title: Gemini
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Gemini UI Revamp π
|
| 3 |
+
colorFrom: gray
|
| 4 |
+
colorTo: pink
|
| 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).
|
index.html
CHANGED
|
@@ -1,19 +1,147 @@
|
|
| 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>Gemini - Interactive UI</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 |
+
<script>
|
| 11 |
+
tailwind.config = {
|
| 12 |
+
theme: {
|
| 13 |
+
extend: {
|
| 14 |
+
colors: {
|
| 15 |
+
primary: '#4285F4', // Google Blue
|
| 16 |
+
secondary: '#34A853', // Google Green
|
| 17 |
+
}
|
| 18 |
+
}
|
| 19 |
+
}
|
| 20 |
+
}
|
| 21 |
+
</script>
|
| 22 |
+
<style>
|
| 23 |
+
.gradient-bg {
|
| 24 |
+
background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
|
| 25 |
+
}
|
| 26 |
+
.btn-hover:hover {
|
| 27 |
+
transform: translateY(-2px);
|
| 28 |
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
| 29 |
+
}
|
| 30 |
+
.transition-all {
|
| 31 |
+
transition: all 0.3s ease;
|
| 32 |
+
}
|
| 33 |
+
</style>
|
| 34 |
+
</head>
|
| 35 |
+
<body class="bg-gray-50 min-h-screen font-sans">
|
| 36 |
+
<div class="gradient-bg text-white py-4 px-6 shadow-md">
|
| 37 |
+
<div class="container mx-auto flex justify-between items-center">
|
| 38 |
+
<div class="flex items-center space-x-2">
|
| 39 |
+
<h1 class="text-2xl font-bold">Gemini</h1>
|
| 40 |
+
<span class="bg-white text-primary px-2 py-1 rounded-full text-xs font-semibold">Interactive UI</span>
|
| 41 |
+
</div>
|
| 42 |
+
<nav class="hidden md:flex space-x-6">
|
| 43 |
+
<a href="#" class="hover:text-gray-200 transition-all">About</a>
|
| 44 |
+
<a href="#" class="hover:text-gray-200 transition-all">App</a>
|
| 45 |
+
<a href="#" class="hover:text-gray-200 transition-all">Subscriptions</a>
|
| 46 |
+
<a href="#" class="hover:text-gray-200 transition-all">For Business</a>
|
| 47 |
+
</nav>
|
| 48 |
+
<button class="md:hidden">
|
| 49 |
+
<i data-feather="menu"></i>
|
| 50 |
+
</button>
|
| 51 |
+
</div>
|
| 52 |
+
</div>
|
| 53 |
+
|
| 54 |
+
<main class="container mx-auto px-4 py-12">
|
| 55 |
+
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden">
|
| 56 |
+
<div class="p-8">
|
| 57 |
+
<div class="flex items-center justify-between">
|
| 58 |
+
<h2 class="text-3xl font-bold text-gray-800">Interactive Button & Menu Styling</h2>
|
| 59 |
+
<span class="bg-primary text-white px-3 py-1 rounded-full text-sm">New</span>
|
| 60 |
+
</div>
|
| 61 |
+
|
| 62 |
+
<div class="my-8">
|
| 63 |
+
<p class="text-gray-600 mb-6">This content was created by another person. It may be inaccurate or unsafe.</p>
|
| 64 |
+
|
| 65 |
+
<div class="bg-yellow-50 border-l-4 border-yellow-400 p-4 mb-6">
|
| 66 |
+
<div class="flex">
|
| 67 |
+
<div class="flex-shrink-0">
|
| 68 |
+
<i data-feather="alert-triangle" class="text-yellow-400"></i>
|
| 69 |
+
</div>
|
| 70 |
+
<div class="ml-3">
|
| 71 |
+
<p class="text-sm text-yellow-700">
|
| 72 |
+
Keep your personal info private. Don't share things like passwords or payment details.
|
| 73 |
+
</p>
|
| 74 |
+
</div>
|
| 75 |
+
</div>
|
| 76 |
+
</div>
|
| 77 |
+
</div>
|
| 78 |
+
|
| 79 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
| 80 |
+
<div class="bg-gray-50 p-6 rounded-lg">
|
| 81 |
+
<h3 class="text-xl font-semibold mb-4">Code Preview</h3>
|
| 82 |
+
<div class="bg-gray-800 text-gray-100 p-4 rounded-md mb-4">
|
| 83 |
+
<code class="text-sm">
|
| 84 |
+
// Interactive UI Components<br>
|
| 85 |
+
const button = new GeminiButton();<br>
|
| 86 |
+
button.setTheme('modern');
|
| 87 |
+
</code>
|
| 88 |
+
</div>
|
| 89 |
+
<button class="bg-primary hover:bg-primary-600 text-white px-6 py-3 rounded-full transition-all btn-hover">
|
| 90 |
+
Try Gemini Canvas
|
| 91 |
+
</button>
|
| 92 |
+
</div>
|
| 93 |
+
|
| 94 |
+
<div class="bg-gray-50 p-6 rounded-lg">
|
| 95 |
+
<h3 class="text-xl font-semibold mb-4">Sign In Required</h3>
|
| 96 |
+
<p class="text-gray-600 mb-4">You need to sign in with your Google Account to see some features</p>
|
| 97 |
+
<div class="flex space-x-4">
|
| 98 |
+
<button class="bg-white border border-gray-300 text-gray-700 px-6 py-3 rounded-full hover:bg-gray-50 transition-all btn-hover flex items-center">
|
| 99 |
+
<i data-feather="user" class="mr-2"></i>
|
| 100 |
+
Sign in
|
| 101 |
+
</button>
|
| 102 |
+
<button class="bg-secondary hover:bg-secondary-600 text-white px-6 py-3 rounded-full transition-all btn-hover">
|
| 103 |
+
Continue
|
| 104 |
+
</button>
|
| 105 |
+
</div>
|
| 106 |
+
</div>
|
| 107 |
+
</div>
|
| 108 |
+
|
| 109 |
+
<div class="mt-8 pt-6 border-t border-gray-200">
|
| 110 |
+
<div class="flex flex-wrap items-center justify-between">
|
| 111 |
+
<p class="text-gray-500 text-sm">This app was created by another person</p>
|
| 112 |
+
<button class="text-primary hover:text-primary-600 text-sm font-medium flex items-center">
|
| 113 |
+
<i data-feather="flag" class="mr-1"></i>
|
| 114 |
+
Report unsafe content
|
| 115 |
+
</button>
|
| 116 |
+
</div>
|
| 117 |
+
</div>
|
| 118 |
+
</div>
|
| 119 |
+
</div>
|
| 120 |
+
</main>
|
| 121 |
+
|
| 122 |
+
<footer class="bg-gray-100 py-8">
|
| 123 |
+
<div class="container mx-auto px-4">
|
| 124 |
+
<div class="flex flex-col md:flex-row justify-between items-center">
|
| 125 |
+
<div class="mb-4 md:mb-0">
|
| 126 |
+
<p class="text-gray-600">Β© 2023 Gemini UI. All rights reserved.</p>
|
| 127 |
+
</div>
|
| 128 |
+
<div class="flex space-x-6">
|
| 129 |
+
<a href="#" class="text-gray-600 hover:text-primary transition-all">Terms</a>
|
| 130 |
+
<a href="#" class="text-gray-600 hover:text-primary transition-all">Privacy</a>
|
| 131 |
+
<a href="#" class="text-gray-600 hover:text-primary transition-all">Help</a>
|
| 132 |
+
</div>
|
| 133 |
+
</div>
|
| 134 |
+
</div>
|
| 135 |
+
</footer>
|
| 136 |
+
|
| 137 |
+
<script>
|
| 138 |
+
feather.replace();
|
| 139 |
+
|
| 140 |
+
// Mobile menu toggle functionality would go here
|
| 141 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 142 |
+
const mobileMenuButton = document.querySelector('.md\\:hidden');
|
| 143 |
+
// Add click handler for mobile menu
|
| 144 |
+
});
|
| 145 |
+
</script>
|
| 146 |
+
</body>
|
| 147 |
</html>
|