Commandande Ra Di Oh Sol Gratton commited on
Commit
e1b36b7
·
verified ·
1 Parent(s): 2366246

What is the essence of perfection? - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +168 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Apoemforsue
3
- emoji: 🌖
4
- colorFrom: indigo
5
  colorTo: blue
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: apoemforsue
3
+ emoji: 🐳
4
+ colorFrom: red
5
  colorTo: blue
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,168 @@
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>The Essence of Perfection</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .perfection-gradient {
11
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
12
+ }
13
+ .philosophy-card {
14
+ transition: all 0.3s ease;
15
+ transform-style: preserve-3d;
16
+ }
17
+ .philosophy-card:hover {
18
+ transform: translateY(-5px) rotateX(5deg);
19
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
20
+ }
21
+ .golden-ratio-spiral {
22
+ position: relative;
23
+ width: 200px;
24
+ height: 200px;
25
+ }
26
+ .spiral-path {
27
+ position: absolute;
28
+ width: 100%;
29
+ height: 100%;
30
+ border: 2px solid #d4af37;
31
+ border-radius: 50%;
32
+ clip-path: polygon(0% 0%, 100% 0%, 100% 30%, 30% 30%, 30% 100%, 0% 100%);
33
+ animation: spiralRotate 8s infinite linear;
34
+ }
35
+ @keyframes spiralRotate {
36
+ 0% { transform: rotate(0deg); }
37
+ 100% { transform: rotate(360deg); }
38
+ }
39
+ .perfection-meter {
40
+ height: 8px;
41
+ background: linear-gradient(90deg, #e0e0e0 0%, #d4af37 50%, #e0e0e0 100%);
42
+ background-size: 200% 100%;
43
+ animation: perfectionShimmer 3s infinite linear;
44
+ }
45
+ @keyframes perfectionShimmer {
46
+ 0% { background-position: 200% 0; }
47
+ 100% { background-position: -200% 0; }
48
+ }
49
+ </style>
50
+ </head>
51
+ <body class="perfection-gradient min-h-screen font-sans">
52
+ <div class="container mx-auto px-4 py-12">
53
+ <!-- Header -->
54
+ <header class="text-center mb-16">
55
+ <h1 class="text-4xl md:text-6xl font-bold text-gray-800 mb-4">The Essence of <span class="text-yellow-600">Perfection</span></h1>
56
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">An exploration of humanity's eternal pursuit of the flawless</p>
57
+ </header>
58
+
59
+ <!-- Perfection Meter -->
60
+ <div class="max-w-2xl mx-auto mb-16">
61
+ <div class="flex justify-between mb-2">
62
+ <span class="text-gray-600">Imperfection</span>
63
+ <span class="text-yellow-600 font-bold">Perfection</span>
64
+ </div>
65
+ <div class="perfection-meter rounded-full"></div>
66
+ </div>
67
+
68
+ <!-- Golden Ratio Visualization -->
69
+ <div class="flex flex-col md:flex-row items-center justify-center mb-16 gap-8">
70
+ <div class="golden-ratio-spiral">
71
+ <div class="spiral-path"></div>
72
+ <div class="absolute inset-0 flex items-center justify-center">
73
+ <i class="fas fa-star text-yellow-500 text-4xl animate-pulse"></i>
74
+ </div>
75
+ </div>
76
+ <div class="max-w-md">
77
+ <h2 class="text-2xl font-bold text-gray-800 mb-4">The Golden Ratio</h2>
78
+ <p class="text-gray-600">Nature's perfect proportion (1:1.618) appears in everything from seashells to galaxies, suggesting perfection might be mathematical harmony rather than absolute flawlessness.</p>
79
+ </div>
80
+ </div>
81
+
82
+ <!-- Philosophical Perspectives -->
83
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16">
84
+ <div class="philosophy-card bg-white p-6 rounded-xl shadow-md">
85
+ <div class="text-yellow-500 text-3xl mb-4">
86
+ <i class="fas fa-feather-alt"></i>
87
+ </div>
88
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Eastern View</h3>
89
+ <p class="text-gray-600">In Zen philosophy, perfection is found in imperfection (wabi-sabi). The cracked teacup is more beautiful for having been broken and repaired with gold.</p>
90
+ </div>
91
+
92
+ <div class="philosophy-card bg-white p-6 rounded-xl shadow-md">
93
+ <div class="text-yellow-500 text-3xl mb-4">
94
+ <i class="fas fa-scroll"></i>
95
+ </div>
96
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Western View</h3>
97
+ <p class="text-gray-600">Plato's Theory of Forms suggests perfect ideals exist beyond our reality. What we see are just shadows of these perfect forms.</p>
98
+ </div>
99
+
100
+ <div class="philosophy-card bg-white p-6 rounded-xl shadow-md">
101
+ <div class="text-yellow-500 text-3xl mb-4">
102
+ <i class="fas fa-atom"></i>
103
+ </div>
104
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Scientific View</h3>
105
+ <p class="text-gray-600">In physics, perfect crystals or absolute zero represent theoretical perfect states that can't actually be achieved, only approximated.</p>
106
+ </div>
107
+ </div>
108
+
109
+ <!-- Interactive Perfection Paradox -->
110
+ <div class="bg-white rounded-xl shadow-md p-8 mb-16 max-w-4xl mx-auto">
111
+ <h2 class="text-2xl font-bold text-gray-800 mb-6 text-center">The Perfection Paradox</h2>
112
+ <div class="flex flex-col md:flex-row gap-8 items-center">
113
+ <div class="flex-1">
114
+ <p class="text-gray-600 mb-6">Perfection is both an inspiring goal and an impossible standard. The more we pursue it, the more it eludes us. Yet in striving for perfection, we often achieve excellence.</p>
115
+ <div class="bg-gray-100 p-4 rounded-lg mb-6">
116
+ <p class="text-gray-800 italic">"Perfection is not attainable, but if we chase perfection we can catch excellence." <br>- Vince Lombardi</p>
117
+ </div>
118
+ </div>
119
+ <div class="flex-1">
120
+ <div class="relative h-64">
121
+ <div id="perfection-scale" class="absolute bottom-0 left-1/2 transform -translate-x-1/2 w-12 bg-gray-300 rounded-t-full" style="height: 0%;"></div>
122
+ <div class="absolute bottom-0 left-1/2 transform -translate-x-1/2 w-12 border-l border-r border-gray-400 h-full"></div>
123
+ <div class="absolute top-0 left-1/2 transform -translate-x-1/2 text-center">
124
+ <span class="text-gray-600">Your perfection pursuit:</span>
125
+ <div id="perfection-value" class="text-xl font-bold text-yellow-600">0%</div>
126
+ </div>
127
+ </div>
128
+ <button id="pursue-btn" class="mt-4 w-full bg-yellow-500 hover:bg-yellow-600 text-white font-bold py-3 px-4 rounded-full transition duration-300">
129
+ Pursue Perfection
130
+ </button>
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Conclusion -->
136
+ <div class="max-w-3xl mx-auto text-center">
137
+ <h2 class="text-2xl font-bold text-gray-800 mb-6">So What Is Perfection?</h2>
138
+ <p class="text-gray-600 text-lg mb-8">Perhaps perfection isn't a destination but a direction. Not a static state but a dynamic process. Not the absence of flaws but the presence of meaning in every imperfection.</p>
139
+ <div class="inline-flex items-center bg-yellow-100 text-yellow-800 px-6 py-3 rounded-full">
140
+ <i class="fas fa-lightbulb mr-2"></i>
141
+ <span>True perfection may be knowing when to stop perfecting</span>
142
+ </div>
143
+ </div>
144
+ </div>
145
+
146
+ <script>
147
+ document.addEventListener('DOMContentLoaded', function() {
148
+ const pursueBtn = document.getElementById('pursue-btn');
149
+ const perfectionScale = document.getElementById('perfection-scale');
150
+ const perfectionValue = document.getElementById('perfection-value');
151
+
152
+ let pursuitLevel = 0;
153
+ let isAnimating = false;
154
+
155
+ pursueBtn.addEventListener('click', function() {
156
+ if (isAnimating) return;
157
+
158
+ isAnimating = true;
159
+ pursuitLevel += 10;
160
+
161
+ if (pursuitLevel > 100) {
162
+ pursuitLevel = 0;
163
+ perfectionValue.textContent = "0%";
164
+ perfectionScale.style.height = "0%";
165
+ perfectionScale.classList.remove('bg-yellow-500');
166
+ perfectionScale.classList.add('
167
+ <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=CommanderGratton/apoemforsue" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
168
+ </html>