Its nice but i dont love that block in the middle. Maybe do something more...... idk just more interesting. - Initial Deployment
Browse files- README.md +7 -5
- index.html +133 -19
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: loves-it
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: pink
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
|
@@ -1,19 +1,133 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Vita Activa | Coming Soon</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 9 |
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
| 10 |
+
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;900&display=swap" rel="stylesheet">
|
| 11 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 12 |
+
<style>
|
| 13 |
+
body {
|
| 14 |
+
-webkit-font-smoothing: antialiased;
|
| 15 |
+
-moz-osx-font-smoothing: grayscale;
|
| 16 |
+
background-color: #f8f8f8;
|
| 17 |
+
font-family: 'Poppins', sans-serif;
|
| 18 |
+
}
|
| 19 |
+
.brutal-border {
|
| 20 |
+
border: 3px solid #333;
|
| 21 |
+
border-radius: 12px;
|
| 22 |
+
box-shadow: 6px 6px 0 rgba(0,0,0,0.1);
|
| 23 |
+
transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
|
| 24 |
+
}
|
| 25 |
+
.brutal-border:hover {
|
| 26 |
+
transform: translate(-3px, -3px);
|
| 27 |
+
box-shadow: 8px 8px 0 rgba(0,0,0,0.15);
|
| 28 |
+
}
|
| 29 |
+
.brutal-border:active {
|
| 30 |
+
transform: translate(0, 0);
|
| 31 |
+
box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
|
| 32 |
+
}
|
| 33 |
+
@keyframes float {
|
| 34 |
+
0%, 100% { transform: translateY(0) rotate(-1deg); }
|
| 35 |
+
50% { transform: translateY(-8px) rotate(1deg); }
|
| 36 |
+
}
|
| 37 |
+
.floating {
|
| 38 |
+
animation: float 3s ease-in-out infinite;
|
| 39 |
+
}
|
| 40 |
+
.dotted-bg {
|
| 41 |
+
background-image: radial-gradient(#333 15%, transparent 15%);
|
| 42 |
+
background-size: 12px 12px;
|
| 43 |
+
background-color: #F0F9FF;
|
| 44 |
+
}
|
| 45 |
+
</style>
|
| 46 |
+
</head>
|
| 47 |
+
<body class="min-h-screen">
|
| 48 |
+
<div class="container mx-auto px-4 py-8 md:py-16">
|
| 49 |
+
<header class="flex justify-between items-center mb-16 md:mb-24">
|
| 50 |
+
<div class="text-3xl font-black tracking-tight">
|
| 51 |
+
VITA ACTIVA
|
| 52 |
+
</div>
|
| 53 |
+
<nav class="hidden md:block">
|
| 54 |
+
<ul class="flex space-x-8">
|
| 55 |
+
<li><a href="#" class="font-bold underline">ABOUT</a></li>
|
| 56 |
+
<li><a href="#" class="font-bold">VISION</a></li>
|
| 57 |
+
<li><a href="#" class="font-bold">TEAM</a></li>
|
| 58 |
+
<li><a href="#" class="font-bold">CONTACT</a></li>
|
| 59 |
+
</ul>
|
| 60 |
+
</nav>
|
| 61 |
+
<button class="md:hidden font-bold">
|
| 62 |
+
MENU
|
| 63 |
+
</button>
|
| 64 |
+
</header>
|
| 65 |
+
|
| 66 |
+
<main class="flex flex-col md:flex-row items-center">
|
| 67 |
+
<div class="md:w-1/2 mb-12 md:mb-0">
|
| 68 |
+
<h1 class="text-5xl md:text-7xl font-bold mb-8 leading-tight tracking-tight">
|
| 69 |
+
ACTIVATING<br>
|
| 70 |
+
THE FUTURE<br>
|
| 71 |
+
OF WORK
|
| 72 |
+
</h1>
|
| 73 |
+
<p class="text-xl mb-12 max-w-lg leading-relaxed">
|
| 74 |
+
VITA ACTIVA IS REIMAGINING HOW WE ENGAGE WITH OUR PROFESSIONAL LIVES.
|
| 75 |
+
A NEW PARADIGM IS COMING. STAY TUNED FOR OUR LAUNCH.
|
| 76 |
+
</p>
|
| 77 |
+
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
|
| 78 |
+
<button class="brutal-border bg-black text-white px-8 py-4 font-bold hover:bg-white hover:text-black">
|
| 79 |
+
JOIN WAITLIST
|
| 80 |
+
</button>
|
| 81 |
+
<button class="brutal-border border-black px-8 py-4 font-bold hover:bg-black hover:text-white">
|
| 82 |
+
LEARN MORE
|
| 83 |
+
</button>
|
| 84 |
+
</div>
|
| 85 |
+
</div>
|
| 86 |
+
|
| 87 |
+
<div class="md:w-1/2 flex justify-center">
|
| 88 |
+
<div class="brutal-border w-full h-64 md:h-96 flex items-center justify-center floating dotted-bg">
|
| 89 |
+
<div class="text-center p-8 relative">
|
| 90 |
+
<div class="absolute -top-4 -left-4 w-12 h-12 rounded-full bg-yellow-300 border-2 border-black"></div>
|
| 91 |
+
<div class="absolute -bottom-4 -right-4 w-8 h-8 rounded-full bg-pink-300 border-2 border-black"></div>
|
| 92 |
+
<h3 class="text-4xl font-black mb-4 relative z-10">COMING SOON</h3>
|
| 93 |
+
<p class="text-3xl font-bold relative z-10">Q4 2023</p>
|
| 94 |
+
<div class="absolute top-1/2 right-0 w-16 h-2 bg-green-300 transform translate-x-1/2 -rotate-12 border border-black"></div>
|
| 95 |
+
</div>
|
| 96 |
+
</div>
|
| 97 |
+
</div>
|
| 98 |
+
</main>
|
| 99 |
+
|
| 100 |
+
<footer class="mt-24 md:mt-32 pt-8 border-t border-gray-200">
|
| 101 |
+
<div class="flex flex-col md:flex-row justify-between items-center">
|
| 102 |
+
<div class="mb-4 md:mb-0">
|
| 103 |
+
<span class="font-bold">© 2023 VITA ACTIVA</span>
|
| 104 |
+
</div>
|
| 105 |
+
<div class="flex space-x-6">
|
| 106 |
+
<a href="#" class="font-bold">TWITTER</a>
|
| 107 |
+
<a href="#" class="font-bold">LINKEDIN</a>
|
| 108 |
+
<a href="#" class="font-bold">INSTAGRAM</a>
|
| 109 |
+
</div>
|
| 110 |
+
</div>
|
| 111 |
+
</footer>
|
| 112 |
+
</div>
|
| 113 |
+
|
| 114 |
+
<script>
|
| 115 |
+
// Simple hover effects
|
| 116 |
+
document.addEventListener('DOMContentLoaded', () => {
|
| 117 |
+
const navLinks = document.querySelectorAll('nav a');
|
| 118 |
+
navLinks.forEach(link => {
|
| 119 |
+
link.addEventListener('mouseenter', () => {
|
| 120 |
+
if (!link.classList.contains('underline')) {
|
| 121 |
+
link.classList.add('underline');
|
| 122 |
+
}
|
| 123 |
+
});
|
| 124 |
+
link.addEventListener('mouseleave', () => {
|
| 125 |
+
if (!link.getAttribute('class').includes('font-bold underline')) {
|
| 126 |
+
link.classList.remove('underline');
|
| 127 |
+
}
|
| 128 |
+
});
|
| 129 |
+
});
|
| 130 |
+
});
|
| 131 |
+
</script>
|
| 132 |
+
<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=ashercn97/loves-it" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 133 |
+
</html>
|