sturentz commited on
Commit
22dfdfe
·
verified ·
1 Parent(s): b1d0f08

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +83 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Chatchoice
3
- emoji: 📊
4
- colorFrom: yellow
5
- colorTo: green
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: chatchoice
3
+ emoji: 🐳
4
+ colorFrom: red
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,83 @@
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>Interview Simulator</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
+ .divider {
11
+ position: relative;
12
+ }
13
+ .divider:after {
14
+ content: "";
15
+ position: absolute;
16
+ top: 10%;
17
+ right: 0;
18
+ height: 80%;
19
+ width: 1px;
20
+ background-color: #334385;
21
+ }
22
+ .last-divider:after {
23
+ display: none;
24
+ }
25
+ @media (max-width: 768px) {
26
+ .divider:after {
27
+ display: none;
28
+ }
29
+ }
30
+ </style>
31
+ </head>
32
+ <body class="bg-gray-100 min-h-screen flex items-center justify-center p-4">
33
+ <div class="w-full max-w-6xl bg-white rounded-xl shadow-lg overflow-hidden flex flex-col md:flex-row">
34
+ <!-- Text Chat Column -->
35
+ <div class="divider p-8 flex-1 flex flex-col items-center text-center">
36
+ <div class="h-72 w-full bg-blue-50 rounded-lg flex items-center justify-center mb-6">
37
+ <i class="fas fa-comments text-6xl text-blue-400"></i>
38
+ </div>
39
+ <h3 class="text-xl font-semibold text-gray-800 mb-4">Text-Based Interview</h3>
40
+ <p class="text-gray-600 mb-6">Practice your written communication skills with our realistic text chat simulator. Perfect for remote job interviews and professional messaging.</p>
41
+ <button class="bg-[#6dc5fb] hover:bg-blue-500 text-white font-medium py-2 px-6 rounded-lg transition-all duration-300 transform hover:scale-105">
42
+ Select Text Chat
43
+ </button>
44
+ </div>
45
+
46
+ <!-- Online Meeting Column -->
47
+ <div class="divider p-8 flex-1 flex flex-col items-center text-center">
48
+ <div class="h-72 w-full bg-purple-50 rounded-lg flex items-center justify-center mb-6">
49
+ <i class="fas fa-video text-6xl text-purple-400"></i>
50
+ </div>
51
+ <h3 class="text-xl font-semibold text-gray-800 mb-4">Virtual Meeting</h3>
52
+ <p class="text-gray-600 mb-6">Simulate video conference interviews with our AI-powered platform. Get comfortable with virtual interviews before the real thing.</p>
53
+ <button class="bg-[#6dc5fb] hover:bg-blue-500 text-white font-medium py-2 px-6 rounded-lg transition-all duration-300 transform hover:scale-105">
54
+ Select Online Meeting
55
+ </button>
56
+ </div>
57
+
58
+ <!-- Roleplaying Column -->
59
+ <div class="divider last-divider p-8 flex-1 flex flex-col items-center text-center">
60
+ <div class="h-72 w-full bg-green-50 rounded-lg flex items-center justify-center mb-6">
61
+ <i class="fas fa-theater-masks text-6xl text-green-400"></i>
62
+ </div>
63
+ <h3 class="text-xl font-semibold text-gray-800 mb-4">Scenario Roleplay</h3>
64
+ <p class="text-gray-600 mb-6">Engage in realistic job interview scenarios with dynamic roleplaying. Practice handling difficult questions and unexpected situations.</p>
65
+ <button class="bg-[#6dc5fb] hover:bg-blue-500 text-white font-medium py-2 px-6 rounded-lg transition-all duration-300 transform hover:scale-105">
66
+ Select Roleplaying
67
+ </button>
68
+ </div>
69
+ </div>
70
+
71
+ <script>
72
+ // Add hover effects and any interactive functionality here
73
+ document.querySelectorAll('button').forEach(button => {
74
+ button.addEventListener('mouseenter', () => {
75
+ button.classList.add('shadow-lg');
76
+ });
77
+ button.addEventListener('mouseleave', () => {
78
+ button.classList.remove('shadow-lg');
79
+ });
80
+ });
81
+ </script>
82
+ <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=sturentz/chatchoice" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
83
+ </html>