Add 3 files
Browse files- README.md +7 -5
- index.html +189 -19
- prompts.txt +0 -0
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: bork
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: yellow
|
| 5 |
+
colorTo: red
|
| 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,189 @@
|
|
| 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>BORK - The O.G Internet Dog</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fredoka+One&family=Comic+Neue:wght@700&display=swap">
|
| 9 |
+
<style>
|
| 10 |
+
@keyframes float {
|
| 11 |
+
0% { transform: translateY(0px); }
|
| 12 |
+
50% { transform: translateY(-10px); }
|
| 13 |
+
100% { transform: translateY(0px); }
|
| 14 |
+
}
|
| 15 |
+
@keyframes glow {
|
| 16 |
+
0% { box-shadow: 0 0 5px rgba(158, 255, 203, 0.5); }
|
| 17 |
+
50% { box-shadow: 0 0 20px rgba(158, 255, 203, 0.8); }
|
| 18 |
+
100% { box-shadow: 0 0 5px rgba(158, 255, 203, 0.5); }
|
| 19 |
+
}
|
| 20 |
+
.wave-bg {
|
| 21 |
+
position: absolute;
|
| 22 |
+
bottom: 0;
|
| 23 |
+
left: 0;
|
| 24 |
+
width: 100%;
|
| 25 |
+
overflow: hidden;
|
| 26 |
+
line-height: 0;
|
| 27 |
+
}
|
| 28 |
+
.wave-bg svg {
|
| 29 |
+
position: relative;
|
| 30 |
+
display: block;
|
| 31 |
+
width: calc(100% + 1.3px);
|
| 32 |
+
height: 150px;
|
| 33 |
+
}
|
| 34 |
+
.wave-bg .shape-fill {
|
| 35 |
+
fill: #7E22CE;
|
| 36 |
+
}
|
| 37 |
+
.bork-title {
|
| 38 |
+
font-family: 'Fredoka One', cursive;
|
| 39 |
+
text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
|
| 40 |
+
}
|
| 41 |
+
.social-btn {
|
| 42 |
+
transition: all 0.3s ease;
|
| 43 |
+
}
|
| 44 |
+
.social-btn:hover {
|
| 45 |
+
transform: scale(1.1);
|
| 46 |
+
animation: glow 1.5s infinite;
|
| 47 |
+
}
|
| 48 |
+
.action-btn {
|
| 49 |
+
transition: all 0.3s ease;
|
| 50 |
+
border: 3px solid #000;
|
| 51 |
+
box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
|
| 52 |
+
}
|
| 53 |
+
.action-btn:hover {
|
| 54 |
+
transform: translateY(-3px);
|
| 55 |
+
box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
|
| 56 |
+
animation: glow 1.5s infinite;
|
| 57 |
+
}
|
| 58 |
+
.mascot {
|
| 59 |
+
animation: float 4s ease-in-out infinite;
|
| 60 |
+
}
|
| 61 |
+
.diamond {
|
| 62 |
+
filter: drop-shadow(0 0 10px rgba(158, 255, 203, 0.8));
|
| 63 |
+
}
|
| 64 |
+
</style>
|
| 65 |
+
</head>
|
| 66 |
+
<body class="min-h-screen bg-gradient-to-b from-purple-900 to-purple-700 text-white relative overflow-x-hidden">
|
| 67 |
+
<!-- Wave background -->
|
| 68 |
+
<div class="wave-bg">
|
| 69 |
+
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
|
| 70 |
+
<path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
|
| 71 |
+
</svg>
|
| 72 |
+
</div>
|
| 73 |
+
|
| 74 |
+
<!-- Social buttons -->
|
| 75 |
+
<div class="absolute top-8 left-8 flex flex-col space-y-4 z-10">
|
| 76 |
+
<button class="social-btn w-12 h-12 bg-green-300 rounded-lg flex items-center justify-center">
|
| 77 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-twitter">
|
| 78 |
+
<path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path>
|
| 79 |
+
</svg>
|
| 80 |
+
</button>
|
| 81 |
+
<button class="social-btn w-12 h-12 bg-green-300 rounded-lg flex items-center justify-center">
|
| 82 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-send">
|
| 83 |
+
<line x1="22" y1="2" x2="11" y2="13"></line>
|
| 84 |
+
<polygon points="22 2 15 22 11 13 2 9 22 2"></polygon>
|
| 85 |
+
</svg>
|
| 86 |
+
</button>
|
| 87 |
+
<button class="social-btn w-12 h-12 bg-green-300 rounded-lg flex items-center justify-center">
|
| 88 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-link">
|
| 89 |
+
<path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path>
|
| 90 |
+
<path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path>
|
| 91 |
+
</svg>
|
| 92 |
+
</button>
|
| 93 |
+
</div>
|
| 94 |
+
|
| 95 |
+
<!-- Logo -->
|
| 96 |
+
<div class="absolute top-8 right-8 w-12 h-12 bg-white rounded-full flex items-center justify-center z-10">
|
| 97 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#7E22CE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-gitlab">
|
| 98 |
+
<path d="M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"></path>
|
| 99 |
+
</svg>
|
| 100 |
+
</div>
|
| 101 |
+
|
| 102 |
+
<!-- Main content -->
|
| 103 |
+
<div class="container mx-auto px-4 pt-32 pb-64 flex flex-col items-center justify-center text-center relative z-0">
|
| 104 |
+
<h1 class="bork-title text-8xl md:text-9xl mb-2 text-green-300">BORK!</h1>
|
| 105 |
+
<p class="text-green-300 uppercase tracking-widest text-lg mb-8">THE O.G INTERNET DOG</p>
|
| 106 |
+
|
| 107 |
+
<button class="action-btn bg-pink-400 text-black font-bold py-4 px-12 rounded-lg mb-16 text-xl uppercase tracking-wider">
|
| 108 |
+
LET'S BORK
|
| 109 |
+
</button>
|
| 110 |
+
|
| 111 |
+
<!-- Mascot -->
|
| 112 |
+
<div class="mascot relative w-64 h-64 md:w-80 md:h-80">
|
| 113 |
+
<div class="absolute inset-0 flex items-center justify-center">
|
| 114 |
+
<!-- Dog body -->
|
| 115 |
+
<div class="relative">
|
| 116 |
+
<!-- Head -->
|
| 117 |
+
<div class="w-40 h-32 bg-amber-200 rounded-t-full rounded-b-3xl relative z-10">
|
| 118 |
+
<!-- Eyes -->
|
| 119 |
+
<div class="absolute top-8 left-6 w-6 h-6 bg-white rounded-full flex items-center justify-center">
|
| 120 |
+
<div class="w-3 h-3 bg-black rounded-full"></div>
|
| 121 |
+
</div>
|
| 122 |
+
<div class="absolute top-8 right-6 w-6 h-6 bg-white rounded-full flex items-center justify-center">
|
| 123 |
+
<div class="w-3 h-3 bg-black rounded-full"></div>
|
| 124 |
+
</div>
|
| 125 |
+
<!-- Nose -->
|
| 126 |
+
<div class="absolute top-14 left-1/2 transform -translate-x-1/2 w-6 h-4 bg-black rounded-full"></div>
|
| 127 |
+
<!-- Mouth -->
|
| 128 |
+
<div class="absolute top-20 left-1/2 transform -translate-x-1/2 w-16 h-2 border-b-2 border-black"></div>
|
| 129 |
+
<!-- Sunglasses -->
|
| 130 |
+
<div class="absolute top-6 left-1/2 transform -translate-x-1/2 w-28 h-8 bg-black flex">
|
| 131 |
+
<div class="w-14 h-8 border-r-2 border-gray-600 flex items-center justify-center">
|
| 132 |
+
<div class="w-10 h-4 bg-green-300"></div>
|
| 133 |
+
</div>
|
| 134 |
+
<div class="w-14 h-8 flex items-center justify-center">
|
| 135 |
+
<div class="w-10 h-4 bg-green-300"></div>
|
| 136 |
+
</div>
|
| 137 |
+
</div>
|
| 138 |
+
</div>
|
| 139 |
+
<!-- Ears -->
|
| 140 |
+
<div class="absolute -top-4 left-2 w-12 h-12 bg-amber-400 rounded-full transform rotate-12 z-0"></div>
|
| 141 |
+
<div class="absolute -top-4 right-2 w-12 h-12 bg-amber-400 rounded-full transform -rotate-12 z-0"></div>
|
| 142 |
+
<!-- Body with suit -->
|
| 143 |
+
<div class="absolute top-28 left-1/2 transform -translate-x-1/2 w-32 h-40 bg-black rounded-b-lg">
|
| 144 |
+
<!-- Tie -->
|
| 145 |
+
<div class="absolute top-2 left-1/2 transform -translate-x-1/2 w-6 h-10 bg-pink-400"></div>
|
| 146 |
+
<div class="absolute top-12 left-1/2 transform -translate-x-1/2 w-10 h-2 bg-pink-400"></div>
|
| 147 |
+
<!-- Arms -->
|
| 148 |
+
<div class="absolute top-12 -left-4 w-4 h-16 bg-black rounded-full"></div>
|
| 149 |
+
<div class="absolute top-12 -right-4 w-4 h-16 bg-black rounded-full"></div>
|
| 150 |
+
<!-- Hands holding diamonds -->
|
| 151 |
+
<div class="absolute top-24 -left-8 w-8 h-8 diamond">
|
| 152 |
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
| 153 |
+
<path d="M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z" fill="#9EFFCB"/>
|
| 154 |
+
</svg>
|
| 155 |
+
</div>
|
| 156 |
+
<div class="absolute top-24 -right-8 w-8 h-8 diamond">
|
| 157 |
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
| 158 |
+
<path d="M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z" fill="#9EFFCB"/>
|
| 159 |
+
</svg>
|
| 160 |
+
</div>
|
| 161 |
+
</div>
|
| 162 |
+
</div>
|
| 163 |
+
</div>
|
| 164 |
+
</div>
|
| 165 |
+
</div>
|
| 166 |
+
|
| 167 |
+
<!-- Bottom buttons -->
|
| 168 |
+
<div class="fixed bottom-8 left-0 right-0 flex justify-center space-x-8 z-10">
|
| 169 |
+
<button class="action-btn bg-green-300 text-black font-bold py-3 px-8 rounded-lg text-lg uppercase tracking-wider">
|
| 170 |
+
BUY $BORK
|
| 171 |
+
</button>
|
| 172 |
+
<button class="action-btn bg-green-300 text-black font-bold py-3 px-8 rounded-lg text-lg uppercase tracking-wider">
|
| 173 |
+
STAKE YOUR $SOL
|
| 174 |
+
</button>
|
| 175 |
+
</div>
|
| 176 |
+
|
| 177 |
+
<script>
|
| 178 |
+
// Add interactive effects
|
| 179 |
+
document.querySelectorAll('.action-btn').forEach(button => {
|
| 180 |
+
button.addEventListener('mouseenter', () => {
|
| 181 |
+
button.classList.add('animate-bounce');
|
| 182 |
+
});
|
| 183 |
+
button.addEventListener('mouseleave', () => {
|
| 184 |
+
button.classList.remove('animate-bounce');
|
| 185 |
+
});
|
| 186 |
+
});
|
| 187 |
+
</script>
|
| 188 |
+
<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=Tollex/bork" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 189 |
+
</html>
|
prompts.txt
ADDED
|
File without changes
|