rushkid5 commited on
Commit
a4dbd12
·
verified ·
1 Parent(s): a9fdd2c

https://rushkid5-dickpic-rater-pro.static.hf.space/index.html

Browse files
Files changed (5) hide show
  1. about.html +99 -0
  2. components/footer.js +5 -5
  3. components/header.js +5 -7
  4. index.html +4 -4
  5. style.css +15 -1
about.html ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>About - DickPic Rater Pro</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <link rel="stylesheet" href="style.css">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ </head>
12
+ <body class="bg-gradient-to-br from-purple-900 via-indigo-900 to-blue-900 min-h-screen">
13
+ <custom-header></custom-header>
14
+
15
+ <main class="container mx-auto px-4 py-8">
16
+ <div class="text-center mb-12">
17
+ <h1 class="text-4xl md:text-6xl font-bold text-white mb-4">About DickPic Rater Pro</h1>
18
+ <p class="text-xl text-purple-200 max-w-2xl mx-auto">Learn more about our expert rating service and how we provide honest feedback.</p>
19
+ </div>
20
+
21
+ <div class="max-w-4xl mx-auto">
22
+ <div class="bg-white/10 backdrop-blur-lg rounded-2xl p-6 md:p-8 shadow-2xl border border-white/20 mb-8">
23
+ <h2 class="text-2xl font-bold text-white mb-6">Our Mission</h2>
24
+ <p class="text-gray-300 mb-6">
25
+ DickPic Rater Pro was created to provide a fun, anonymous platform for individuals to receive honest feedback
26
+ on their intimate photography. Our expert panel offers constructive criticism to help users improve their
27
+ presentation and confidence.
28
+ </p>
29
+ <p class="text-gray-300 mb-6">
30
+ We prioritize privacy and discretion above all else. All uploads are processed anonymously and deleted
31
+ immediately after rating. No personal information is stored or shared with third parties.
32
+ </p>
33
+ </div>
34
+
35
+ <div class="bg-white/10 backdrop-blur-lg rounded-2xl p-6 md:p-8 shadow-2xl border border-white/20 mb-8">
36
+ <h2 class="text-2xl font-bold text-white mb-6">Meet Our Expert Panel</h2>
37
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
38
+ <div class="bg-gray-800/50 rounded-xl p-6 border border-gray-700 text-center">
39
+ <img src="http://static.photos/people/320x240/4" alt="Expert" class="w-24 h-24 rounded-full mx-auto mb-4 object-cover">
40
+ <h3 class="text-xl font-semibold text-white">Dr. Amanda Pierce</h3>
41
+ <p class="text-purple-300 mb-3">Medical Professional</p>
42
+ <p class="text-gray-300 text-sm">10+ years experience in anatomical assessment. Specializes in proportion and positioning analysis.</p>
43
+ </div>
44
+
45
+ <div class="bg-gray-800/50 rounded-xl p-6 border border-gray-700 text-center">
46
+ <img src="http://static.photos/people/320x240/5" alt="Expert" class="w-24 h-24 rounded-full mx-auto mb-4 object-cover">
47
+ <h3 class="text-xl font-semibold text-white">James Richardson</h3>
48
+ <p class="text-purple-300 mb-3">Professional Photographer</p>
49
+ <p class="text-gray-300 text-sm">Expert in lighting and composition. Focuses on visual presentation and photographic quality.</p>
50
+ </div>
51
+
52
+ <div class="bg-gray-800/50 rounded-xl p-6 border border-gray-700 text-center">
53
+ <img src="http://static.photos/people/320x240/6" alt="Expert" class="w-24 h-24 rounded-full mx-auto mb-4 object-cover">
54
+ <h3 class="text-xl font-semibold text-white">Sophia Williams</h3>
55
+ <p class="text-purple-300 mb-3">Art Critic</p>
56
+ <p class="text-gray-300 text-sm">Specializes in aesthetic analysis. Evaluates visual appeal and artistic composition.</p>
57
+ </div>
58
+ </div>
59
+ </div>
60
+
61
+ <div class="bg-white/10 backdrop-blur-lg rounded-2xl p-6 md:p-8 shadow-2xl border border-white/20">
62
+ <h2 class="text-2xl font-bold text-white mb-6">How It Works</h2>
63
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
64
+ <div class="text-center">
65
+ <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4">
66
+ <span class="text-white text-2xl font-bold">1</span>
67
+ </div>
68
+ <h3 class="text-xl font-semibold text-white mb-2">Upload</h3>
69
+ <p class="text-gray-300">Submit your photo with optional measurements for more detailed feedback.</p>
70
+ </div>
71
+
72
+ <div class="text-center">
73
+ <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4">
74
+ <span class="text-white text-2xl font-bold">2</span>
75
+ </div>
76
+ <h3 class="text-xl font-semibold text-white mb-2">Rate</h3>
77
+ <p class="text-gray-300">Our expert panel reviews your submission and provides honest feedback.</p>
78
+ </div>
79
+
80
+ <div class="text-center">
81
+ <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4">
82
+ <span class="text-white text-2xl font-bold">3</span>
83
+ </div>
84
+ <h3 class="text-xl font-semibold text-white mb-2">Improve</h3>
85
+ <p class="text-gray-300">Receive actionable insights to enhance your future presentations.</p>
86
+ </div>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </main>
91
+
92
+ <custom-footer></custom-footer>
93
+
94
+ <script src="components/header.js"></script>
95
+ <script src="components/footer.js"></script>
96
+ <script src="script.js"></script>
97
+ <script>feather.replace();</script>
98
+ </body>
99
+ </html>
components/footer.js CHANGED
@@ -128,12 +128,12 @@ class CustomFooter extends HTMLElement {
128
  <div class="footer-section">
129
  <h3>Quick Links</h3>
130
  <ul>
131
- <li><a href="#"><i data-feather="chevron-right" class="w-4 h-4"></i> Home</a></li>
132
- <li><a href="#"><i data-feather="chevron-right" class="w-4 h-4"></i> How It Works</a></li>
133
- <li><a href="#"><i data-feather="chevron-right" class="w-4 h-4"></i> Upload</a></li>
134
- <li><a href="#"><i data-feather="chevron-right" class="w-4 h-4"></i> My Ratings</a></li>
135
  </ul>
136
- </div>
137
 
138
  <div class="footer-section">
139
  <h3>Resources</h3>
 
128
  <div class="footer-section">
129
  <h3>Quick Links</h3>
130
  <ul>
131
+ <li><a href="/"><i data-feather="chevron-right" class="w-4 h-4"></i> Home</a></li>
132
+ <li><a href="/about.html"><i data-feather="chevron-right" class="w-4 h-4"></i> How It Works</a></li>
133
+ <li><a href="/"><i data-feather="chevron-right" class="w-4 h-4"></i> Upload</a></li>
134
+ <li><a href="/about.html"><i data-feather="chevron-right" class="w-4 h-4"></i> Our Panel</a></li>
135
  </ul>
136
+ </div>
137
 
138
  <div class="footer-section">
139
  <h3>Resources</h3>
components/header.js CHANGED
@@ -128,17 +128,15 @@ class CustomHeader extends HTMLElement {
128
  </div>
129
  <div class="logo-text">DickPic Rater Pro</div>
130
  </div>
131
-
132
  <nav>
133
  <ul>
134
- <li><a href="#"><i data-feather="home" class="w-4 h-4"></i> Home</a></li>
135
- <li><a href="#"><i data-feather="upload" class="w-4 h-4"></i> Upload</a></li>
136
- <li><a href="#"><i data-feather="award" class="w-4 h-4"></i> Ratings</a></li>
137
- <li><a href="#"><i data-feather="users" class="w-4 h-4"></i> Panel</a></li>
138
  </ul>
139
  </nav>
140
-
141
- <div class="user-actions">
142
  <button class="btn btn-outline">
143
  <i data-feather="help-circle" class="w-4 h-4 mr-1"></i> Help
144
  </button>
 
128
  </div>
129
  <div class="logo-text">DickPic Rater Pro</div>
130
  </div>
 
131
  <nav>
132
  <ul>
133
+ <li><a href="/"><i data-feather="home" class="w-4 h-4"></i> Home</a></li>
134
+ <li><a href="/"><i data-feather="upload" class="w-4 h-4"></i> Upload</a></li>
135
+ <li><a href="/about.html"><i data-feather="award" class="w-4 h-4"></i> About</a></li>
136
+ <li><a href="/about.html"><i data-feather="users" class="w-4 h-4"></i> Panel</a></li>
137
  </ul>
138
  </nav>
139
+ <div class="user-actions">
 
140
  <button class="btn btn-outline">
141
  <i data-feather="help-circle" class="w-4 h-4 mr-1"></i> Help
142
  </button>
index.html CHANGED
@@ -60,7 +60,7 @@
60
  <div class="space-y-4 max-h-96 overflow-y-auto pr-2">
61
  <div class="bg-gray-800/50 rounded-xl p-4 border border-gray-700">
62
  <div class="flex items-center mb-2">
63
- <div class="bg-gray-200 border-2 border-dashed rounded-xl w-10 h-10 mr-3" />
64
  <div>
65
  <h4 class="font-semibold text-white">Sarah K.</h4>
66
  <p class="text-xs text-gray-400">Professional Critic</p>
@@ -71,7 +71,7 @@
71
 
72
  <div class="bg-gray-800/50 rounded-xl p-4 border border-gray-700">
73
  <div class="flex items-center mb-2">
74
- <div class="bg-gray-200 border-2 border-dashed rounded-xl w-10 h-10 mr-3" />
75
  <div>
76
  <h4 class="font-semibold text-white">Emma R.</h4>
77
  <p class="text-xs text-gray-400">Art History Major</p>
@@ -82,7 +82,7 @@
82
 
83
  <div class="bg-gray-800/50 rounded-xl p-4 border border-gray-700">
84
  <div class="flex items-center mb-2">
85
- <div class="bg-gray-200 border-2 border-dashed rounded-xl w-10 h-10 mr-3" />
86
  <div>
87
  <h4 class="font-semibold text-white">Mia T.</h4>
88
  <p class="text-xs text-gray-400">Medical Student</p>
@@ -105,4 +105,4 @@
105
  <script>feather.replace();</script>
106
  <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
107
  </body>
108
- </html>
 
60
  <div class="space-y-4 max-h-96 overflow-y-auto pr-2">
61
  <div class="bg-gray-800/50 rounded-xl p-4 border border-gray-700">
62
  <div class="flex items-center mb-2">
63
+ <img src="http://static.photos/people/320x240/1" alt="Reviewer" class="w-10 h-10 rounded-full mr-3 object-cover">
64
  <div>
65
  <h4 class="font-semibold text-white">Sarah K.</h4>
66
  <p class="text-xs text-gray-400">Professional Critic</p>
 
71
 
72
  <div class="bg-gray-800/50 rounded-xl p-4 border border-gray-700">
73
  <div class="flex items-center mb-2">
74
+ <img src="http://static.photos/people/320x240/2" alt="Reviewer" class="w-10 h-10 rounded-full mr-3 object-cover">
75
  <div>
76
  <h4 class="font-semibold text-white">Emma R.</h4>
77
  <p class="text-xs text-gray-400">Art History Major</p>
 
82
 
83
  <div class="bg-gray-800/50 rounded-xl p-4 border border-gray-700">
84
  <div class="flex items-center mb-2">
85
+ <img src="http://static.photos/people/320x240/3" alt="Reviewer" class="w-10 h-10 rounded-full mr-3 object-cover">
86
  <div>
87
  <h4 class="font-semibold text-white">Mia T.</h4>
88
  <p class="text-xs text-gray-400">Medical Student</p>
 
105
  <script>feather.replace();</script>
106
  <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
107
  </body>
108
+ </html>
style.css CHANGED
@@ -48,11 +48,25 @@ body::before {
48
  background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
49
  border-radius: 4px;
50
  }
51
-
52
  ::-webkit-scrollbar-thumb:hover {
53
  background: linear-gradient(to bottom, #9d4edd, #60a5fa);
54
  }
55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  input, select, textarea {
57
  background: rgba(30, 30, 40, 0.7) !important;
58
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
 
48
  background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
49
  border-radius: 4px;
50
  }
 
51
  ::-webkit-scrollbar-thumb:hover {
52
  background: linear-gradient(to bottom, #9d4edd, #60a5fa);
53
  }
54
 
55
+ /* Add styles for images */
56
+ img {
57
+ border-radius: 8px;
58
+ }
59
+
60
+ /* Add responsive adjustments */
61
+ @media (max-width: 768px) {
62
+ .max-w-4xl {
63
+ max-width: 100%;
64
+ }
65
+
66
+ .grid-cols-1 md:grid-cols-3 {
67
+ grid-template-columns: 1fr;
68
+ }
69
+ }
70
  input, select, textarea {
71
  background: rgba(30, 30, 40, 0.7) !important;
72
  border: 1px solid rgba(255, 255, 255, 0.1) !important;