Akim92 commited on
Commit
5454e82
ยท
verified ยท
1 Parent(s): c0d15ed

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +395 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ancient Egypt
3
- emoji: ๐Ÿข
4
- colorFrom: green
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: ancient-egypt
3
+ emoji: ๐Ÿณ
4
+ colorFrom: yellow
5
+ colorTo: pink
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,395 @@
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>Journey Through Ancient Egypt</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ egypt: {
15
+ gold: '#D4AF37',
16
+ sand: '#E1C16E',
17
+ stone: '#8B7D6B',
18
+ papyrus: '#F5F0E1',
19
+ hieroglyph: '#2C5F2D',
20
+ }
21
+ },
22
+ fontFamily: {
23
+ hiero: ['Noto Sans Egyptian Hieroglyphs', 'sans-serif'],
24
+ egypt: ['Cinzel', 'serif']
25
+ }
26
+ }
27
+ }
28
+ }
29
+ </script>
30
+ <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Noto+Sans+Egyptian+Hieroglyphs&display=swap" rel="stylesheet">
31
+ <style>
32
+ .hieroglyph-bg {
33
+ background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="%23D4AF37" stroke-width="2"/><circle cx="50" cy="50" r="15" fill="none" stroke="%23D4AF37" stroke-width="2"/></svg>');
34
+ background-size: 100px 100px;
35
+ }
36
+ .pyramid {
37
+ clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
38
+ }
39
+ .cartouche {
40
+ border: 3px solid #D4AF37;
41
+ border-radius: 50px;
42
+ padding: 10px 20px;
43
+ display: inline-block;
44
+ }
45
+ .scroll-text {
46
+ animation: scroll 20s linear infinite;
47
+ }
48
+ @keyframes scroll {
49
+ 0% { transform: translateX(100%); }
50
+ 100% { transform: translateX(-100%); }
51
+ }
52
+ .hieroglyphic {
53
+ font-family: 'Noto Sans Egyptian Hieroglyphs', sans-serif;
54
+ font-size: 2rem;
55
+ }
56
+ .egyptian-text {
57
+ font-family: 'Cinzel', serif;
58
+ }
59
+ </style>
60
+ </head>
61
+ <body class="bg-egypt-papyrus font-sans">
62
+ <!-- Header with Egyptian theme -->
63
+ <header class="bg-egypt-stone text-egypt-papyrus py-6 relative overflow-hidden">
64
+ <div class="absolute top-0 left-0 w-full h-full hieroglyph-bg opacity-10"></div>
65
+ <div class="container mx-auto px-4 relative z-10">
66
+ <div class="flex flex-col md:flex-row justify-between items-center">
67
+ <div class="flex items-center mb-4 md:mb-0">
68
+ <div class="w-16 h-16 bg-egypt-gold rounded-full flex items-center justify-center mr-4">
69
+ <i class="fas fa-sun text-3xl text-egypt-stone"></i>
70
+ </div>
71
+ <h1 class="text-3xl md:text-4xl font-bold egyptian-text">Journey Through Ancient Egypt</h1>
72
+ </div>
73
+ <nav class="flex space-x-6">
74
+ <a href="#" class="hover:text-egypt-gold transition">Temples</a>
75
+ <a href="#" class="hover:text-egypt-gold transition">Pharaohs</a>
76
+ <a href="#" class="hover:text-egypt-gold transition">Tombs</a>
77
+ <a href="#" class="hover:text-egypt-gold transition">Hieroglyphs</a>
78
+ </nav>
79
+ </div>
80
+ </div>
81
+ </header>
82
+
83
+ <!-- Hero Section -->
84
+ <section class="relative py-16 bg-gradient-to-r from-egypt-stone to-egypt-gold">
85
+ <div class="absolute inset-0 opacity-20">
86
+ <div class="absolute top-0 left-0 w-full h-full bg-repeat" style="background-image: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><path d=\"M20,20 L80,20 L80,80 L20,80 Z\" fill=\"none\" stroke=\"%23000\" stroke-width=\"1\"/><circle cx=\"50\" cy=\"50\" r=\"15\" fill=\"none\" stroke=\"%23000\" stroke-width=\"1\"/></svg>');"></div>
87
+ </div>
88
+ <div class="container mx-auto px-4 relative z-10">
89
+ <div class="max-w-3xl mx-auto text-center">
90
+ <h2 class="text-4xl md:text-6xl font-bold text-egypt-papyrus mb-6 egyptian-text">Discover the Wonders of the Pharaohs</h2>
91
+ <p class="text-xl text-egypt-papyrus mb-8">Explore the secrets of one of the world's greatest civilizations. Marvel at architectural masterpieces and unlock the mysteries of hieroglyphic writing.</p>
92
+ <div class="flex justify-center space-x-4">
93
+ <button class="bg-egypt-papyrus text-egypt-stone px-6 py-3 rounded-full font-bold hover:bg-egypt-gold transition transform hover:scale-105">
94
+ Explore Pyramids
95
+ </button>
96
+ <button class="bg-transparent border-2 border-egypt-papyrus text-egypt-papyrus px-6 py-3 rounded-full font-bold hover:bg-egypt-papyrus hover:text-egypt-stone transition">
97
+ Decode Hieroglyphs
98
+ </button>
99
+ </div>
100
+ </div>
101
+ </div>
102
+ </section>
103
+
104
+ <!-- Hieroglyphic Translator Section -->
105
+ <section class="py-16 bg-egypt-papyrus">
106
+ <div class="container mx-auto px-4">
107
+ <div class="max-w-4xl mx-auto">
108
+ <div class="text-center mb-12">
109
+ <h2 class="text-3xl md:text-4xl font-bold text-egypt-stone mb-4 egyptian-text">Hieroglyphic Translator</h2>
110
+ <p class="text-lg text-gray-700">Translate English text into ancient Egyptian hieroglyphs</p>
111
+ </div>
112
+
113
+ <div class="bg-white rounded-xl shadow-xl p-6 mb-12 border-2 border-egypt-gold">
114
+ <div class="mb-6">
115
+ <label for="englishInput" class="block text-lg font-medium text-egypt-stone mb-2">Enter English Text:</label>
116
+ <textarea id="englishInput" class="w-full h-32 p-4 border-2 border-egypt-gold rounded-lg focus:ring-2 focus:ring-egypt-gold focus:border-transparent" placeholder="Type your message here...">Hello Ancient Egypt</textarea>
117
+ </div>
118
+
119
+ <div class="flex justify-center my-6">
120
+ <button id="translateBtn" class="bg-egypt-gold hover:bg-egypt-stone text-white font-bold py-3 px-8 rounded-full transition transform hover:scale-105">
121
+ <i class="fas fa-exchange-alt mr-2"></i> Translate to Hieroglyphs
122
+ </button>
123
+ </div>
124
+
125
+ <div class="mb-4">
126
+ <label class="block text-lg font-medium text-egypt-stone mb-2">Hieroglyphic Translation:</label>
127
+ <div id="hieroglyphOutput" class="w-full min-h-32 p-6 border-2 border-egypt-gold rounded-lg bg-egypt-papyrus flex items-center justify-center hieroglyphic text-4xl">
128
+ ๐“†“๐“๐“Š–๐“Šช๐“…ฑ๐“†‘๐“๐“Š–๐“Šช๐“Š–๐“‹ด
129
+ </div>
130
+ </div>
131
+
132
+ <div class="mt-8">
133
+ <h3 class="text-xl font-bold text-egypt-stone mb-4">Hieroglyphic Reference</h3>
134
+ <div class="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-6 gap-4">
135
+ <div class="bg-egypt-papyrus border border-egypt-gold rounded-lg p-3 text-center">
136
+ <div class="hieroglyphic text-3xl mb-1">๐“†“</div>
137
+ <div class="text-xs">A</div>
138
+ </div>
139
+ <div class="bg-egypt-papyrus border border-egypt-gold rounded-lg p-3 text-center">
140
+ <div class="hieroglyphic text-3xl mb-1">๐“ƒ€</div>
141
+ <div class="text-xs">B</div>
142
+ </div>
143
+ <div class="bg-egypt-papyrus border border-egypt-gold rounded-lg p-3 text-center">
144
+ <div class="hieroglyphic text-3xl mb-1">๐“†‘</div>
145
+ <div class="text-xs">C</div>
146
+ </div>
147
+ <div class="bg-egypt-papyrus border border-egypt-gold rounded-lg p-3 text-center">
148
+ <div class="hieroglyphic text-3xl mb-1">๐“†“</div>
149
+ <div class="text-xs">D</div>
150
+ </div>
151
+ <div class="bg-egypt-papyrus border border-egypt-gold rounded-lg p-3 text-center">
152
+ <div class="hieroglyphic text-3xl mb-1">๐“</div>
153
+ <div class="text-xs">E</div>
154
+ </div>
155
+ <div class="bg-egypt-papyrus border border-egypt-gold rounded-lg p-3 text-center">
156
+ <div class="hieroglyphic text-3xl mb-1">๐“Š–</div>
157
+ <div class="text-xs">F</div>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </div>
163
+ </div>
164
+ </section>
165
+
166
+ <!-- Ancient Egypt Highlights -->
167
+ <section class="py-16 bg-gradient-to-b from-egypt-papyrus to-egypt-sand">
168
+ <div class="container mx-auto px-4">
169
+ <h2 class="text-3xl md:text-4xl font-bold text-center text-egypt-stone mb-12 egyptian-text">Explore Ancient Egypt</h2>
170
+
171
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
172
+ <!-- Pyramid Card -->
173
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden border-2 border-egypt-gold transform transition hover:scale-105">
174
+ <div class="h-48 bg-egypt-stone relative">
175
+ <div class="absolute inset-0 flex items-center justify-center">
176
+ <div class="w-40 h-40 pyramid bg-gradient-to-b from-yellow-600 to-yellow-800"></div>
177
+ </div>
178
+ </div>
179
+ <div class="p-6">
180
+ <h3 class="text-xl font-bold text-egypt-stone mb-2">The Great Pyramids</h3>
181
+ <p class="text-gray-700 mb-4">Marvel at the architectural marvels of Giza, built as eternal resting places for the pharaohs.</p>
182
+ <button class="text-egypt-gold font-semibold hover:underline">Explore More</button>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Temple Card -->
187
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden border-2 border-egypt-gold transform transition hover:scale-105">
188
+ <div class="h-48 bg-egypt-stone relative">
189
+ <div class="absolute inset-0 flex items-center justify-center">
190
+ <div class="text-center text-egypt-papyrus">
191
+ <i class="fas fa-landmark text-6xl mb-2"></i>
192
+ <p class="text-xl font-bold">Karnak Temple</p>
193
+ </div>
194
+ </div>
195
+ </div>
196
+ <div class="p-6">
197
+ <h3 class="text-xl font-bold text-egypt-stone mb-2">Sacred Temples</h3>
198
+ <p class="text-gray-700 mb-4">Discover the grand temples dedicated to Egyptian gods, filled with hieroglyphic inscriptions.</p>
199
+ <button class="text-egypt-gold font-semibold hover:underline">Explore More</button>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Tomb Card -->
204
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden border-2 border-egypt-gold transform transition hover:scale-105">
205
+ <div class="h-48 bg-egypt-stone relative">
206
+ <div class="absolute inset-0 flex items-center justify-center">
207
+ <div class="text-center text-egypt-papyrus">
208
+ <i class="fas fa-tombstone text-6xl mb-2"></i>
209
+ <p class="text-xl font-bold">Valley of the Kings</p>
210
+ </div>
211
+ </div>
212
+ </div>
213
+ <div class="p-6">
214
+ <h3 class="text-xl font-bold text-egypt-stone mb-2">Royal Tombs</h3>
215
+ <p class="text-gray-700 mb-4">Uncover the treasures of pharaohs buried in elaborate tombs carved into limestone cliffs.</p>
216
+ <button class="text-egypt-gold font-semibold hover:underline">Explore More</button>
217
+ </div>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ </section>
222
+
223
+ <!-- Pharaohs Section -->
224
+ <section class="py-16 bg-egypt-stone text-egypt-papyrus">
225
+ <div class="container mx-auto px-4">
226
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-12 egyptian-text">Legendary Pharaohs</h2>
227
+
228
+ <div class="max-w-4xl mx-auto">
229
+ <div class="flex flex-col md:flex-row items-center bg-egypt-papyrus text-egypt-stone rounded-xl shadow-lg p-6 mb-8">
230
+ <div class="w-32 h-32 rounded-full bg-egypt-gold flex items-center justify-center mb-6 md:mb-0 md:mr-8">
231
+ <i class="fas fa-crown text-5xl text-egypt-stone"></i>
232
+ </div>
233
+ <div>
234
+ <h3 class="text-2xl font-bold mb-2">Tutankhamun</h3>
235
+ <p class="mb-4">The boy king whose tomb's discovery in 1922 revealed incredible treasures and provided unprecedented insight into ancient Egyptian burial practices.</p>
236
+ <div class="cartouche text-egypt-gold">
237
+ <span class="hieroglyphic">๐“Š–๐“…ฑ๐“ˆ–๐“Š–๐“‚‹๐“…ฑ๐“Šช</span>
238
+ </div>
239
+ </div>
240
+ </div>
241
+
242
+ <div class="flex flex-col md:flex-row items-center bg-egypt-papyrus text-egypt-stone rounded-xl shadow-lg p-6">
243
+ <div class="w-32 h-32 rounded-full bg-egypt-gold flex items-center justify-center mb-6 md:mb-0 md:mr-8">
244
+ <i class="fas fa-sun text-5xl text-egypt-stone"></i>
245
+ </div>
246
+ <div>
247
+ <h3 class="text-2xl font-bold mb-2">Ramses II</h3>
248
+ <p class="mb-4">Known as Ramses the Great, he was the third Egyptian pharaoh of the Nineteenth Dynasty and is often regarded as the greatest and most powerful pharaoh of the New Kingdom.</p>
249
+ <div class="cartouche text-egypt-gold">
250
+ <span class="hieroglyphic">๐“‚‹๊œฅ-ms-sw</span>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ </div>
255
+ </div>
256
+ </section>
257
+
258
+ <!-- Egyptian Gods Section -->
259
+ <section class="py-16 bg-egypt-papyrus">
260
+ <div class="container mx-auto px-4">
261
+ <h2 class="text-3xl md:text-4xl font-bold text-center text-egypt-stone mb-12 egyptian-text">Major Egyptian Gods and Goddesses</h2>
262
+
263
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
264
+ <!-- Ra -->
265
+ <div class="bg-white rounded-xl shadow-lg p-6 border-2 border-egypt-gold transform transition hover:scale-105">
266
+ <div class="flex items-center mb-4">
267
+ <div class="w-16 h-16 bg-egypt-gold rounded-full flex items-center justify-center mr-4">
268
+ <span class="hieroglyphic text-2xl">๐“‡ณ</span>
269
+ </div>
270
+ <h3 class="text-2xl font-bold text-egypt-stone">Ra</h3>
271
+ </div>
272
+ <p class="text-gray-700 mb-3"><strong>God of the Sun</strong></p>
273
+ <p class="text-gray-700">The supreme sun god, believed to rule over all parts of the created world: the sky, the earth, and the underworld. Often depicted as a man with a falcon head and a sun disk on his head.</p>
274
+ </div>
275
+
276
+ <!-- Isis -->
277
+ <div class="bg-white rounded-xl shadow-lg p-6 border-2 border-egypt-gold transform transition hover:scale-105">
278
+ <div class="flex items-center mb-4">
279
+ <div class="w-16 h-16 bg-egypt-gold rounded-full flex items-center justify-center mr-4">
280
+ <span class="hieroglyphic text-2xl">๐“Šฟ</span>
281
+ </div>
282
+ <h3 class="text-2xl font-bold text-egypt-stone">Isis</h3>
283
+ </div>
284
+ <p class="text-gray-700 mb-3"><strong>Goddess of Magic and Motherhood</strong></p>
285
+ <p class="text-gray-700">Wife of Osiris and mother of Horus. Associated with magic, healing, and protection. Often depicted as a woman wearing a throne-shaped headdress or with wings.</p>
286
+ </div>
287
+
288
+ <!-- Anubis -->
289
+ <div class="bg-white rounded-xl shadow-lg p-6 border-2 border-egypt-gold transform transition hover:scale-105">
290
+ <div class="flex items-center mb-4">
291
+ <div class="w-16 h-16 bg-egypt-gold rounded-full flex items-center justify-center mr-4">
292
+ <span class="hieroglyphic text-2xl">๐“ข</span>
293
+ </div>
294
+ <h3 class="text-2xl font-bold text-egypt-stone">Anubis</h3>
295
+ </div>
296
+ <p class="text-gray-700 mb-3"><strong>God of the Afterlife</strong></p>
297
+ <p class="text-gray-700">God of mummification and the afterlife. Depicted as a man with a jackal head. He weighed the hearts of the deceased against the feather of Ma'at to determine their fate.</p>
298
+ </div>
299
+
300
+ <!-- Horus -->
301
+ <div class="bg-white rounded-xl shadow-lg p-6 border-2 border-egypt-gold transform transition hover:scale-105">
302
+ <div class="flex items-center mb-4">
303
+ <div class="w-16 h-16 bg-egypt-gold rounded-full flex items-center justify-center mr-4">
304
+ <span class="hieroglyphic text-2xl">๐“€€</span>
305
+ </div>
306
+ <h3 class="text-2xl font-bold text-egypt-stone">Horus</h3>
307
+ </div>
308
+ <p class="text-gray-700 mb-3"><strong>God of the Sky</strong></p>
309
+ <p class="text-gray-700">The sky god, often depicted as a falcon or a man with a falcon head. He was the patron of the pharaohs and represented divine kingship and the triumph of order over chaos.</p>
310
+ </div>
311
+
312
+ <!-- Hathor -->
313
+ <div class="bg-white rounded-xl shadow-lg p-6 border-2 border-egypt-gold transform transition hover:scale-105">
314
+ <div class="flex items-center mb-4">
315
+ <div class="w-16 h-16 bg-egypt-gold rounded-full flex items-center justify-center mr-4">
316
+ <span class="hieroglyphic text-2xl">๐“Šจ</span>
317
+ </div>
318
+ <h3 class="text-2xl font-bold text-egypt-stone">Hathor</h3>
319
+ </div>
320
+ <p class="text-gray-700 mb-3"><strong>Goddess of Love and Music</strong></p>
321
+ <p class="text-gray-700">Goddess of love, beauty, music, and motherhood. Often depicted as a cow or a woman with cow horns and a sun disk. She was also a protective goddess of women and children.</p>
322
+ </div>
323
+
324
+ <!-- Thoth -->
325
+ <div class="bg-white rounded-xl shadow-lg p-6 border-2 border-egypt-gold transform transition hover:scale-105">
326
+ <div class="flex items-center mb-4">
327
+ <div class="w-16 h-16 bg-egypt-gold rounded-full flex items-center justify-center mr-4">
328
+ <span class="hieroglyphic text-2xl">้นฎ</span>
329
+ </div>
330
+ <h3 class="text-2xl font-bold text-egypt-stone">Thoth</h3>
331
+ </div>
332
+ <p class="text-gray-700 mb-3"><strong>God of Wisdom and Writing</strong></p>
333
+ <p class="text-gray-700">God of wisdom, writing, and knowledge. Depicted as a man with the head of an ibis or a baboon. He was the inventor of writing and scribe of the gods, maintaining the universe's records.</p>
334
+ </div>
335
+ </div>
336
+ </div>
337
+ </section>
338
+
339
+ <!-- Footer -->
340
+ <footer class="bg-egypt-stone text-egypt-papyrus py-12">
341
+ <div class="container mx-auto px-4">
342
+ <div class="flex flex-col md:flex-row justify-between items-center">
343
+ <div class="mb-6 md:mb-0">
344
+ <div class="flex items-center">
345
+ <div class="w-12 h-12 bg-egypt-gold rounded-full flex items-center justify-center mr-4">
346
+ <i class="fas fa-sun text-xl text-egypt-stone"></i>
347
+ </div>
348
+ <h3 class="text-2xl font-bold egyptian-text">Ancient Egypt</h3>
349
+ </div>
350
+ <p class="mt-4 max-w-md">Explore the wonders of one of the world's greatest civilizations. Discover the secrets of the Pharaohs, marvel at architectural masterpieces, and unlock the mysteries of hieroglyphic writing.</p>
351
+ </div>
352
+
353
+ <div class="flex space-x-6">
354
+ <a href="#" class="text-egypt-papyrus hover:text-egypt-gold text-2xl"><i class="fab fa-facebook"></i></a>
355
+ <a href="#" class="text-egypt-papyrus hover:text-egypt-gold text-2xl"><i class="fab fa-twitter"></i></a>
356
+ <a href="#" class="text-egypt-papyrus hover:text-egypt-gold text-2xl"><i class="fab fa-instagram"></i></a>
357
+ <a href="#" class="text-egypt-papyrus hover:text-egypt-gold text-2xl"><i class="fab fa-youtube"></i></a>
358
+ </div>
359
+ </div>
360
+
361
+ <div class="border-t border-egypt-gold mt-8 pt-8 text-center">
362
+ <p>&copy; 2023 Journey Through Ancient Egypt. All rights reserved.</p>
363
+ </div>
364
+ </div>
365
+ </footer>
366
+
367
+ <script>
368
+ // Hieroglyphic translation mapping (simplified for demonstration)
369
+ const hieroglyphMap = {
370
+ 'a': '๐“†“', 'b': '๐“ƒ€', 'c': '๐“†‘', 'd': '๐“†“', 'e': '๐“', 'f': '๐“Š–',
371
+ 'g': '๐“†“', 'h': '๐“Šช', 'i': '๐“Šน', 'j': '๐“Œณ', 'k': '๐“†Ž', 'l': '๐“‹ด',
372
+ 'm': '๐“…“', 'n': '๐“ˆ–', 'o': '๐“Š–', 'p': '๐“Šช', 'q': '๐“ˆŽ', 'r': '๐“‚‹',
373
+ 's': '๐“‹ด', 't': '๐“', 'u': '๐“…ฑ', 'v': '๐“†‘', 'w': '๐“…ฑ', 'x': '๐“Žก',
374
+ 'y': '๐“Šช', 'z': '๐“Šƒ', ' ': ' ', '!': '๐“Šน', '?': '๐“ฏ'
375
+ };
376
+
377
+ // Function to translate English to hieroglyphs
378
+ function translateToHieroglyphs(text) {
379
+ return text.toLowerCase().split('').map(char => hieroglyphMap[char] || char).join('');
380
+ }
381
+
382
+ // Event listener for translation button
383
+ document.getElementById('translateBtn').addEventListener('click', function() {
384
+ const englishText = document.getElementById('englishInput').value;
385
+ const hieroglyphText = translateToHieroglyphs(englishText);
386
+ document.getElementById('hieroglyphOutput').textContent = hieroglyphText;
387
+ });
388
+
389
+ // Initialize with sample translation
390
+ window.addEventListener('load', function() {
391
+ document.getElementById('translateBtn').click();
392
+ });
393
+ </script>
394
+ <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=Akim92/ancient-egypt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
395
+ </html>