Fred5712 commited on
Commit
182b8f1
·
verified ·
1 Parent(s): 8081d40

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +187 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Aiden Viewer Landing Page A
3
- emoji: 🏢
4
- colorFrom: red
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: aiden-viewer-landing-page-a
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: gray
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,187 @@
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="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Aiden Viewer - Expliquez mieux vos radios dentaires</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
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
15
+ min-height: 100vh;
16
+ }
17
+
18
+ .hero-gradient {
19
+ background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
20
+ }
21
+
22
+ .benefit-card {
23
+ transition: all 0.3s ease;
24
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
25
+ }
26
+
27
+ .benefit-card:hover {
28
+ transform: translateY(-5px);
29
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
30
+ }
31
+
32
+ .cta-button {
33
+ transition: all 0.3s ease;
34
+ box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3), 0 2px 4px -1px rgba(59, 130, 246, 0.2);
35
+ }
36
+
37
+ .cta-button:hover {
38
+ transform: translateY(-2px);
39
+ box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3), 0 4px 6px -2px rgba(59, 130, 246, 0.2);
40
+ }
41
+
42
+ .price-tag {
43
+ position: relative;
44
+ background: white;
45
+ border-radius: 0.5rem;
46
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
47
+ }
48
+
49
+ .price-tag::before {
50
+ content: "";
51
+ position: absolute;
52
+ top: -10px;
53
+ left: 50%;
54
+ transform: translateX(-50%);
55
+ width: 0;
56
+ height: 0;
57
+ border-left: 10px solid transparent;
58
+ border-right: 10px solid transparent;
59
+ border-bottom: 10px solid white;
60
+ }
61
+ </style>
62
+ </head>
63
+ <body class="antialiased text-gray-800">
64
+ <!-- Header with Logo -->
65
+ <header class="container mx-auto px-4 py-6">
66
+ <div class="flex items-center">
67
+ <div class="flex items-center">
68
+ <div class="w-12 h-12 rounded-lg bg-blue-600 flex items-center justify-center text-white font-bold text-xl mr-3">
69
+ <span>AI</span>
70
+ </div>
71
+ <span class="text-xl font-semibold text-blue-600">Aiden Viewer</span>
72
+ </div>
73
+ </div>
74
+ </header>
75
+
76
+ <!-- Hero Section -->
77
+ <section class="hero-gradient text-white py-16 md:py-24">
78
+ <div class="container mx-auto px-4">
79
+ <div class="max-w-4xl mx-auto text-center">
80
+ <h1 class="text-3xl md:text-5xl font-bold leading-tight mb-6">
81
+ Expliquez mieux vos radios dentaires.<br>Formez plus efficacement.
82
+ </h1>
83
+ <p class="text-xl md:text-2xl text-blue-100 max-w-3xl mx-auto mb-10">
84
+ Avec Aiden Viewer, visualisez clairement vos radios grâce à l'IA. Un outil simple et pédagogique, pensé pour les praticiens.
85
+ </p>
86
+
87
+ <div class="flex flex-col md:flex-row justify-center items-center gap-6 mb-16">
88
+ <button class="cta-button bg-white text-blue-600 font-semibold py-4 px-8 rounded-lg text-lg hover:bg-blue-50">
89
+ Commencer mon essai gratuit
90
+ <i class="fas fa-arrow-right ml-2"></i>
91
+ </button>
92
+ </div>
93
+
94
+ <div class="bg-white/10 backdrop-blur-sm rounded-xl p-6 inline-block">
95
+ <p class="text-sm md:text-base mb-1">Accès gratuit pendant 30 jours – sans engagement</p>
96
+ <div class="price-tag px-6 py-3 inline-block">
97
+ <p class="text-2xl font-bold">349 € TTC / an</p>
98
+ <p class="text-blue-200 text-sm">soit 0,96 € par jour</p>
99
+ </div>
100
+ </div>
101
+ </div>
102
+ </div>
103
+ </section>
104
+
105
+ <!-- Benefits Section -->
106
+ <section class="py-16 md:py-24 bg-white">
107
+ <div class="container mx-auto px-4">
108
+ <div class="max-w-6xl mx-auto">
109
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
110
+ <!-- Benefit 1 -->
111
+ <div class="benefit-card bg-white rounded-xl p-8 border border-gray-100">
112
+ <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center text-blue-600 mb-6">
113
+ <i class="fas fa-camera-retro text-2xl"></i>
114
+ </div>
115
+ <h3 class="text-xl font-semibold mb-3">Mise en évidence des zones d'intérêt sur radios types</h3>
116
+ <p class="text-gray-600">L'IA identifie et met en lumière les zones importantes de vos radiographies pour une meilleure compréhension.</p>
117
+ </div>
118
+
119
+ <!-- Benefit 2 -->
120
+ <div class="benefit-card bg-white rounded-xl p-8 border border-gray-100">
121
+ <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center text-blue-600 mb-6">
122
+ <i class="fas fa-brain text-2xl"></i>
123
+ </div>
124
+ <h3 class="text-xl font-semibold mb-3">Illustration simplifiée grâce à l'intelligence artificielle</h3>
125
+ <p class="text-gray-600">Nos algorithmes transforment des images complexes en représentations claires et pédagogiques (sans fonction médicale).</p>
126
+ </div>
127
+
128
+ <!-- Benefit 3 -->
129
+ <div class="benefit-card bg-white rounded-xl p-8 border border-gray-100">
130
+ <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center text-blue-600 mb-6">
131
+ <i class="fas fa-chalkboard-teacher text-2xl"></i>
132
+ </div>
133
+ <h3 class="text-xl font-semibold mb-3">Un support concret pour former, expliquer, communiquer</h3>
134
+ <p class="text-gray-600">Améliorez la communication avec vos patients et collègues grâce à des visuels explicites et professionnels.</p>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </section>
140
+
141
+ <!-- Final CTA Section -->
142
+ <section class="py-16 bg-gray-50">
143
+ <div class="container mx-auto px-4">
144
+ <div class="max-w-4xl mx-auto text-center">
145
+ <h2 class="text-2xl md:text-3xl font-bold mb-6">Prêt à révolutionner votre façon d'expliquer les radiographies ?</h2>
146
+ <p class="text-lg text-gray-600 mb-8">Essayez Aiden Viewer gratuitement pendant 30 jours, sans engagement.</p>
147
+ <button class="cta-button bg-blue-600 text-white font-semibold py-4 px-8 rounded-lg text-lg hover:bg-blue-700">
148
+ Commencer mon essai gratuit
149
+ <i class="fas fa-arrow-right ml-2"></i>
150
+ </button>
151
+ </div>
152
+ </div>
153
+ </section>
154
+
155
+ <!-- Footer with Legal Mentions -->
156
+ <footer class="bg-gray-100 py-8 text-sm text-gray-500">
157
+ <div class="container mx-auto px-4">
158
+ <div class="max-w-4xl mx-auto text-center">
159
+ <p>Aiden Viewer est un outil à visée exclusivement pédagogique. Il ne constitue pas un dispositif médical et ne doit pas être utilisé pour le diagnostic ou le traitement. Les zones d'intérêt générées par l'intelligence artificielle sont proposées à des fins illustratives uniquement.</p>
160
+ <p class="mt-4">© 2023 Aiden Viewer. Tous droits réservés.</p>
161
+ </div>
162
+ </div>
163
+ </footer>
164
+
165
+ <script>
166
+ // Simple animation for the CTA buttons
167
+ document.querySelectorAll('.cta-button').forEach(button => {
168
+ button.addEventListener('mouseenter', () => {
169
+ button.querySelector('i').style.transform = 'translateX(3px)';
170
+ });
171
+ button.addEventListener('mouseleave', () => {
172
+ button.querySelector('i').style.transform = 'translateX(0)';
173
+ });
174
+ });
175
+
176
+ // Smooth scroll for anchor links
177
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
178
+ anchor.addEventListener('click', function (e) {
179
+ e.preventDefault();
180
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
181
+ behavior: 'smooth'
182
+ });
183
+ });
184
+ });
185
+ </script>
186
+ <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=Fred5712/aiden-viewer-landing-page-a" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
187
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ 🟦 Logo ➡️ À insérer en haut à gauche (image : aiden-logo.jpg) 🎯 Titre principal Expliquez mieux vos radios dentaires. Formez plus efficacement. 🧠 Sous-titre Avec Aiden Viewer, visualisez clairement vos radios grâce à l’IA. Un outil simple et pédagogique, pensé pour les praticiens. ✅ 3 bénéfices clairs (en icônes ou puces) 📸 Mise en évidence des zones d’intérêt sur radios types 🧠 Illustration simplifiée grâce à l’intelligence artificielle (sans fonction médicale) 👩‍🏫 Un support concret pour former, expliquer, communiquer 🎁 Offre Accès gratuit pendant 30 jours – sans engagement 349 € TTC / an → soit 0,96 € par jour 📲 Bouton d’action (CTA) [Commencer mon essai gratuit] 🔒 Mentions légales (footer ou encart discret) Aiden Viewer est un outil à visée exclusivement pédagogique. Il ne constitue pas un dispositif médical et ne doit pas être utilisé pour le diagnostic ou le traitement. Les zones d’intérêt générées par l’intelligence artificielle sont proposées à des fins illustratives uniquement.