File size: 14,071 Bytes
0346abe 2240e71 b3465a6 0bf715e 53fe820 0346abe 53fe820 0346abe 2dd85dc 0346abe 2dd85dc 41c37df 3ddd1f8 0346abe 2dd85dc 0346abe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FurryChat.ai - Introduction</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<script src="https://unpkg.com/three@0.132.2/build/three.min.js"></script>
<script src="https://unpkg.com/@react-three/fiber@7.0.24/dist/react-three-fiber.js"></script>
<script src="https://unpkg.com/@react-three/drei@8.0.2/dist/drei.umd.js"></script>
<script src="https://unpkg.com/react@17.0.2/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@17.0.2/umd/react-dom.production.min.js"></script>
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<style>
.chat-container {
height: calc(100vh - 180px);
overflow-y: auto;
scroll-behavior: smooth;
}
.message {
max-width: 80%;
animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.typing-indicator {
display: inline-flex;
align-items: center;
}
.typing-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #9CA3AF;
margin: 0 2px;
animation: typing 1.4s infinite ease-in-out;
}
.typing-dot:nth-child(2) {
animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
animation-delay: 0.4s;
}
@keyframes typing {
0%, 60%, 100% { transform: translateY(0); }
30% { transform: translateY(-5px); }
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #c5c5c5;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
/* 3D Model Viewer Styles */
model-viewer {
width: 100%;
height: 100%;
background-color: #f8fafc;
border-radius: 10px;
}
.animation-controls {
background: rgba(255, 255, 255, 0.9);
padding: 15px;
border-radius: 10px;
margin-top: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.animation-buttons {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 10px;
}
.animation-btn {
flex: 1;
min-width: 80px;
padding: 8px 12px;
background: #3b82f6;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s;
font-size: 12px;
font-weight: 500;
}
.animation-btn:hover {
background: #2563eb;
}
.animation-btn.active {
background: #1d4ed8;
}
.upload-section {
background: rgba(255, 255, 255, 0.9);
padding: 15px;
border-radius: 10px;
margin-top: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.upload-btn {
display: block;
width: 100%;
padding: 10px;
background: #10b981;
color: white;
border: none;
border-radius: 8px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
margin-top: 10px;
}
.upload-btn:hover {
background: #059669;
}
.model-info {
margin-top: 10px;
font-size: 12px;
text-align: center;
color: #6b7280;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Hero Section with Vanta.js Background -->
<div id="vanta-bg" class="absolute top-0 left-0 w-full h-screen z-0"></div>
<div class="relative z-10">
<!-- Navigation -->
<nav class="bg-white bg-opacity-90 backdrop-blur-sm shadow-sm py-4 px-6">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<img src="https://huggingface.co/spaces/Andrewbluebird/furry-tales-digital-whiskers/resolve/main/images/FurryChatLogo complete.png" alt="FurryChat Logo" class="w-[150px] h-[75px] rounded-lg">
</div>
<div class="hidden md:flex space-x-8">
<a href="IntroPage.html" class="text-blue-600 font-medium transition-colors">Home</a>
<a href="characters.html" class="text-gray-600 hover:text-blue-600 transition-colors">Characters</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">Features</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">About</a>
</div>
<a href="SignIn.html" class="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 transition-colors">
Login
</a>
</div>
</nav>
<!-- Hero Section -->
<section class="py-20 px-4 relative">
<div class="container mx-auto text-center">
<h1 class="text-5xl md:text-6xl font-bold mb-6 text-gray-800">Where <span class="text-blue-600">Furry Friends</span> Come to Life</h1>
<p class="text-xl md:text-2xl text-gray-600 max-w-4xl mx-auto mb-10">
AI-powered roleplay with your favorite anthropomorphic characters. Create, chat, and bond with your digital furry companions.
</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<a href="SignIn.html" class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-lg font-semibold transition-colors">
Login
</a>
<a href="#" class="bg-white hover:bg-gray-100 text-gray-800 px-8 py-3 rounded-lg font-semibold border border-gray-200 transition-colors">
Meet Our Characters
</a>
</div>
</div>
</section>
<!-- Featured Characters -->
<section class="py-16 px-4">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Meet Our <span class="text-blue-600">Furry Pals</span></h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Character 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
<img src="http://static.photos/animals/640x360/1" alt="Luna the Wolf" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2 text-gray-800">Luna the Wolf</h3>
<p class="text-gray-600 mb-4">Mystical and wise, Luna guides with ancestral knowledge.</p>
<a href="#" class="inline-block text-blue-600 hover:text-blue-700 font-medium">Chat with Luna →</a>
</div>
</div>
<!-- Character 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
<img src="http://static.photos/animals/640x360/2" alt="Rex the Fox" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2 text-gray-800">Rex the Fox</h3>
<p class="text-gray-600 mb-4">Clever and playful, Rex always has a trick up his sleeve.</p>
<a href="#" class="inline-block text-blue-600 hover:text-blue-700 font-medium">Chat with Rex →</a>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section (changed from Chat section) -->
<section class="py-16 px-4">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Amazing <span class="text-blue-600">Features</span></h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center">
<div class="bg-blue-100 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i data-feather="cpu" class="text-blue-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Advanced AI</h3>
<p class="text-gray-600">Our characters learn and remember your preferences for more natural conversations.</p>
</div>
<div class="text-center">
<div class="bg-blue-100 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i data-feather="sliders" class="text-blue-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Customization</h3>
<p class="text-gray-600">Create your own furry character with unique traits and personality.</p>
</div>
<div class="text-center">
<div class="bg-blue-100 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i data-feather="globe" class="text-blue-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Multi-platform</h3>
<p class="text-gray-600">Chat anywhere, anytime - web, mobile, and desktop apps available.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<!-- Footer -->
<footer class="bg-gray-800 text-white mt-16 py-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2">
<img src="https://huggingface.co/spaces/Andrewbluebird/furry-tales-digital-whiskers/resolve/main/images/FurryChatLogo complete.png" alt="FurryChat Logo" class="w-[150px] h-[75px] rounded-lg">
</div>
<p class="text-gray-400">Perfect AI Furry roleplay haven powered by advanced artificial intelligence.</p>
</div>
<div>
<h4 class="font-semibold mb-4">Product</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">Features</a></li>
<li><a href="#" class="hover:text-white transition-colors">Pricing</a></li>
<li><a href="#" class="hover:text-white transition-colors">API</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Community</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">Furry AI Gallery</a></li>
<li><a href="#" class="hover:text-white transition-colors">Furry AI Avatar Marketplace</a></li>
<li><a href="https://discord.gg/NKaAqn5q" class="hover:text-white transition-colors">Discord server</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Company</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">About</a></li>
<li><a href="#" class="hover:text-white transition-colors">Blog</a></li>
<li><a href="#" class="hover:text-white transition-colors">Careers</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Support</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">Help Center</a></li>
<li><a href="#" class="hover:text-white transition-colors">Contact</a></li>
<li><a href="#" class="hover:text-white transition-colors">Privacy Policy</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-6 text-center text-gray-400">
<p>© 2025 MultiForce Entertainment Technologies LTD. All rights reserved.</p>
</div>
</div>
</footer>
</div>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |