teeluck commited on
Commit
5e7cb2a
·
verified ·
1 Parent(s): 8ac63f1

Redesign my website

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +163 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Dimensional Drop 3d Web Canvas
3
- emoji: 🐠
4
- colorFrom: pink
5
- colorTo: purple
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: Dimensional Drop - 3D Web Canvas
3
+ colorFrom: yellow
4
+ colorTo: gray
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,164 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Dimensional Drop - 3D Web Canvas</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>
12
+ <style>
13
+ .perspective-container {
14
+ perspective: 1000px;
15
+ }
16
+ .rotate-y {
17
+ transform-style: preserve-3d;
18
+ transform: rotateY(5deg);
19
+ }
20
+ .text-shadow-3d {
21
+ text-shadow: 4px 4px 0 rgba(0,0,0,0.1);
22
+ }
23
+ .parallax-bg {
24
+ background-attachment: fixed;
25
+ background-position: center;
26
+ background-repeat: no-repeat;
27
+ background-size: cover;
28
+ }
29
+ </style>
30
+ </head>
31
+ <body class="bg-black text-white font-sans overflow-x-hidden" id="vanta-bg">
32
+ <header class="fixed w-full z-50">
33
+ <nav class="container mx-auto px-6 py-4 flex justify-between items-center">
34
+ <div class="text-2xl font-bold tracking-tighter">Dimensional<span class="text-blue-400">Drop</span></div>
35
+ <div class="hidden md:flex space-x-8">
36
+ <a href="#" class="hover:text-blue-400 transition">About</a>
37
+ <a href="#" class="hover:text-blue-400 transition">Features</a>
38
+ <a href="#" class="hover:text-blue-400 transition">Gallery</a>
39
+ <a href="#" class="hover:text-blue-400 transition">Contact</a>
40
+ </div>
41
+ <button class="md:hidden">
42
+ <i data-feather="menu"></i>
43
+ </button>
44
+ </nav>
45
+ </header>
46
+
47
+ <main>
48
+ <!-- Hero Section with 3D effect -->
49
+ <section class="min-h-screen flex items-center justify-center relative overflow-hidden">
50
+ <div class="container mx-auto px-6 z-10 perspective-container">
51
+ <div class="rotate-y">
52
+ <h1 class="text-5xl md:text-8xl font-bold mb-6 text-shadow-3d tracking-tighter">
53
+ <span class="block">3D Web</span>
54
+ <span class="block text-blue-400">Design & Experience</span>
55
+ </h1>
56
+ <p class="text-xl md:text-2xl mb-12 max-w-2xl opacity-90">You're no longer constrained by grids, blocks and a flat page. The infinite 3D space becomes your creative canvas.</p>
57
+ <div class="flex items-center space-x-6">
58
+ <a href="#immersive" class="px-8 py-4 bg-blue-600 hover:bg-blue-700 rounded-full font-medium transition transform hover:scale-105">
59
+ SCROLL TO GO UNDER
60
+ </a>
61
+ <img src="https://files.peachworlds.com/website/90672edd-9af4-4376-ac94-7e02f50cdf00/icon-arrow.svg" alt="Arrow" class="w-12 h-12 animate-bounce">
62
+ </div>
63
+ </div>
64
+ </div>
65
+ <div class="absolute inset-0 bg-gradient-to-b from-black via-transparent to-black opacity-70 z-0"></div>
66
+ </section>
67
+
68
+ <!-- Features Section -->
69
+ <section id="immersive" class="py-20 bg-gradient-to-b from-black via-blue-900/20 to-black parallax-bg" style="background-image: url('https://files.peachworlds.com/website/e967a52d-b5c8-479b-bb43-b390b03a2b8a/peach-contest.jpg')">
70
+ <div class="container mx-auto px-6">
71
+ <div class="grid md:grid-cols-3 gap-12">
72
+ <!-- Spatial UX Card -->
73
+ <div class="bg-black/70 backdrop-blur-sm p-8 rounded-xl border border-blue-400/20 hover:border-blue-400/50 transition transform hover:-translate-y-2">
74
+ <h3 class="text-2xl font-bold mb-4 text-blue-400">Spatial UX</h3>
75
+ <p class="opacity-80">The infinite 3D space becomes your creative canvas, everything is possible — there are no rules.</p>
76
+ </div>
77
+
78
+ <!-- Immersion Card -->
79
+ <div class="bg-black/70 backdrop-blur-sm p-8 rounded-xl border border-blue-400/20 hover:border-blue-400/50 transition transform hover:-translate-y-2">
80
+ <h3 class="text-2xl font-bold mb-4 text-blue-400">Immersion</h3>
81
+ <p class="opacity-80">This depth and realism engage multiple senses, creating a sense of presence and making the experience feel more lifelike.</p>
82
+ </div>
83
+
84
+ <!-- Creativity Card -->
85
+ <div class="bg-black/70 backdrop-blur-sm p-8 rounded-xl border border-blue-400/20 hover:border-blue-400/50 transition transform hover:-translate-y-2">
86
+ <h3 class="text-2xl font-bold mb-4 text-blue-400">Creativity</h3>
87
+ <p class="opacity-80">Craft dynamic, multi-dimensional experiences, whether stylized or hyper-realistic this opens up new possibilities.</p>
88
+ </div>
89
+ </div>
90
+ </div>
91
+ </section>
92
+
93
+ <!-- CTA Section -->
94
+ <section class="py-32">
95
+ <div class="container mx-auto px-6 text-center">
96
+ <h2 class="text-4xl md:text-6xl font-bold mb-8">The Web is More<br><span class="text-blue-400">Than a Flat Page</span></h2>
97
+ <div class="max-w-3xl mx-auto mb-12">
98
+ <img src="https://files.peachworlds.com/website/e967a52d-b5c8-479b-bb43-b390b03a2b8a/peach-contest.jpg" alt="3D Web Design" class="w-full rounded-xl shadow-2xl shadow-blue-500/20">
99
+ </div>
100
+ <div class="flex flex-col items-center">
101
+ <p class="text-xl mb-8 opacity-90 max-w-2xl">Design Your First 3D Website Today</p>
102
+ <div class="flex items-center space-x-4">
103
+ <img src="https://files.peachworlds.com/website/90672edd-9af4-4376-ac94-7e02f50cdf00/icon-arrow.svg" alt="Arrow" class="w-8 h-8 animate-pulse">
104
+ <a href="#" class="px-8 py-3 bg-blue-600 hover:bg-blue-700 rounded-full font-medium transition transform hover:scale-105">
105
+ GET STARTED
106
+ </a>
107
+ </div>
108
+ </div>
109
+ </div>
110
+ </section>
111
+ </main>
112
+
113
+ <footer class="py-12 border-t border-blue-900/30">
114
+ <div class="container mx-auto px-6">
115
+ <div class="flex flex-col md:flex-row justify-between items-center">
116
+ <div class="text-xl font-bold tracking-tighter mb-4 md:mb-0">Dimensional<span class="text-blue-400">Drop</span></div>
117
+ <div class="text-sm opacity-70">MADE WITH PEACH WORLDS</div>
118
+ </div>
119
+ </div>
120
+ </footer>
121
+
122
+ <script>
123
+ // Initialize Vanta.js globe background
124
+ VANTA.GLOBE({
125
+ el: "#vanta-bg",
126
+ mouseControls: true,
127
+ touchControls: true,
128
+ gyroControls: false,
129
+ minHeight: 200.00,
130
+ minWidth: 200.00,
131
+ scale: 1.00,
132
+ scaleMobile: 1.00,
133
+ color: 0x3b82f6,
134
+ backgroundColor: 0x0
135
+ });
136
+
137
+ // Initialize feather icons
138
+ feather.replace();
139
+
140
+ // Simple scroll animation
141
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
142
+ anchor.addEventListener('click', function (e) {
143
+ e.preventDefault();
144
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
145
+ behavior: 'smooth'
146
+ });
147
+ });
148
+ });
149
+
150
+ // Add scroll reveal animations
151
+ const observer = new IntersectionObserver((entries) => {
152
+ entries.forEach(entry => {
153
+ if (entry.isIntersecting) {
154
+ entry.target.classList.add('animate-fadeIn');
155
+ }
156
+ });
157
+ }, { threshold: 0.1 });
158
+
159
+ document.querySelectorAll('.rotate-y, [class*="transition"]').forEach(el => {
160
+ observer.observe(el);
161
+ });
162
+ </script>
163
+ </body>
164
  </html>