samihalawa commited on
Commit
443a98a
·
verified ·
1 Parent(s): 55a44a0

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +308 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Portfolio
3
- emoji: 📈
4
- colorFrom: indigo
5
  colorTo: red
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: portfolio
3
+ emoji: 🐳
4
+ colorFrom: purple
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,308 @@
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>Sami Halawa Ribas | AI & Technology Specialist</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=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ scroll-behavior: smooth;
15
+ }
16
+
17
+ .gradient-bg {
18
+ background: linear-gradient(135deg, #6e8efb, #a777e3);
19
+ }
20
+
21
+ .project-card:hover {
22
+ transform: translateY(-5px);
23
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
24
+ }
25
+
26
+ .skill-bar {
27
+ height: 6px;
28
+ border-radius: 3px;
29
+ }
30
+
31
+ .timeline-item:not(:last-child)::after {
32
+ content: '';
33
+ position: absolute;
34
+ left: 7px;
35
+ top: 24px;
36
+ height: calc(100% - 24px);
37
+ width: 2px;
38
+ background: #e5e7eb;
39
+ }
40
+
41
+ .nav-link {
42
+ position: relative;
43
+ }
44
+
45
+ .nav-link::after {
46
+ content: '';
47
+ position: absolute;
48
+ width: 0;
49
+ height: 2px;
50
+ bottom: 0;
51
+ left: 0;
52
+ background-color: #6e8efb;
53
+ transition: width 0.3s ease;
54
+ }
55
+
56
+ .nav-link:hover::after {
57
+ width: 100%;
58
+ }
59
+
60
+ .active::after {
61
+ width: 100%;
62
+ }
63
+ </style>
64
+ </head>
65
+ <body class="bg-gray-50 text-gray-800">
66
+ <!-- Header -->
67
+ <header class="fixed w-full bg-white shadow-sm z-50">
68
+ <div class="container mx-auto px-6 py-4">
69
+ <div class="flex items-center justify-between">
70
+ <div class="text-2xl font-bold text-indigo-600">Sami Halawa</div>
71
+ <nav class="hidden md:flex space-x-8">
72
+ <a href="#about" class="nav-link">About</a>
73
+ <a href="#projects" class="nav-link">Projects</a>
74
+ <a href="#experience" class="nav-link">Experience</a>
75
+ <a href="#skills" class="nav-link">Skills</a>
76
+ <a href="#education" class="nav-link">Education</a>
77
+ <a href="#contact" class="nav-link">Contact</a>
78
+ </nav>
79
+ <button class="md:hidden focus:outline-none" id="menu-toggle">
80
+ <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
81
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
82
+ </svg>
83
+ </button>
84
+ </div>
85
+ </div>
86
+ <!-- Mobile Menu -->
87
+ <div class="md:hidden hidden bg-white w-full px-6 py-4 shadow-md" id="mobile-menu">
88
+ <div class="flex flex-col space-y-4">
89
+ <a href="#about" class="nav-link">About</a>
90
+ <a href="#projects" class="nav-link">Projects</a>
91
+ <a href="#experience" class="nav-link">Experience</a>
92
+ <a href="#skills" class="nav-link">Skills</a>
93
+ <a href="#education" class="nav-link">Education</a>
94
+ <a href="#contact" class="nav-link">Contact</a>
95
+ </div>
96
+ </div>
97
+ </header>
98
+
99
+ <!-- Hero Section -->
100
+ <section class="pt-32 pb-20 gradient-bg text-white">
101
+ <div class="container mx-auto px-6">
102
+ <div class="flex flex-col md:flex-row items-center">
103
+ <div class="md:w-1/2 mb-10 md:mb-0">
104
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Sami Halawa Ribas</h1>
105
+ <h2 class="text-2xl md:text-3xl font-semibold mb-6">AI & Technology Specialist</h2>
106
+ <p class="text-lg mb-8">Transforming businesses through artificial intelligence, machine learning, and full-stack development solutions.</p>
107
+ <div class="flex space-x-4">
108
+ <a href="#contact" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition duration-300">Contact Me</a>
109
+ <a href="#projects" class="border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-indigo-600 transition duration-300">View Projects</a>
110
+ </div>
111
+ </div>
112
+ <div class="md:w-1/2 flex justify-center">
113
+ <div class="relative">
114
+ <div class="w-64 h-64 md:w-80 md:h-80 bg-indigo-100 rounded-full overflow-hidden border-4 border-white shadow-xl">
115
+ <!-- Placeholder for profile image -->
116
+ <div class="w-full h-full bg-indigo-300 flex items-center justify-center">
117
+ <span class="text-6xl text-white font-bold">SH</span>
118
+ </div>
119
+ </div>
120
+ <div class="absolute -bottom-5 -right-5 bg-white text-indigo-600 px-4 py-2 rounded-lg shadow-lg">
121
+ <span class="font-semibold">+34 679 794 037</span>
122
+ </div>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ </section>
128
+
129
+ <!-- About Section -->
130
+ <section id="about" class="py-20 bg-white">
131
+ <div class="container mx-auto px-6">
132
+ <h2 class="text-3xl font-bold text-center mb-12">About Me</h2>
133
+ <div class="flex flex-col md:flex-row items-center">
134
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
135
+ <p class="text-lg mb-6">I am a Technological Specialist and Full Stack Programmer, focusing on Artificial Intelligence and Machine Learning. With over a decade of experience in SEO, Online Marketing, and E-Commerce, I have successfully launched numerous Apps, Websites, and projects.</p>
136
+ <p class="text-lg mb-6">My expertise spans project management, development, and all stages from advertising to launch in physical stores and App Stores.</p>
137
+ <div class="mb-6">
138
+ <h3 class="text-xl font-semibold mb-3">Languages:</h3>
139
+ <div class="flex flex-wrap gap-2">
140
+ <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">English (C2)</span>
141
+ <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Mandarin Chinese (C2)</span>
142
+ <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Spanish (Native)</span>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ <div class="md:w-1/2">
147
+ <div class="bg-gray-50 p-8 rounded-xl shadow-md">
148
+ <h3 class="text-xl font-semibold mb-4">Professional Highlights</h3>
149
+ <ul class="space-y-4">
150
+ <li class="flex items-start">
151
+ <div class="bg-indigo-100 p-2 rounded-full mr-4">
152
+ <i class="fas fa-lightbulb text-indigo-600"></i>
153
+ </div>
154
+ <span>Having lived and studied in China since age 15 on a UWC Scholarship, I am known for my creativity and problem-solving skills.</span>
155
+ </li>
156
+ <li class="flex items-start">
157
+ <div class="bg-indigo-100 p-2 rounded-full mr-4">
158
+ <i class="fas fa-cogs text-indigo-600"></i>
159
+ </div>
160
+ <span>I excel in optimizing solutions and resources to transform businesses and digital projects.</span>
161
+ </li>
162
+ <li class="flex items-start">
163
+ <div class="bg-indigo-100 p-2 rounded-full mr-4">
164
+ <i class="fas fa-rocket text-indigo-600"></i>
165
+ </div>
166
+ <span>By applying technical expertise and creativity, I tackle complex problems and thrive in challenging roles.</span>
167
+ </li>
168
+ </ul>
169
+ </div>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </section>
174
+
175
+ <!-- Projects Section -->
176
+ <section id="projects" class="py-20 bg-gray-50">
177
+ <div class="container mx-auto px-6">
178
+ <h2 class="text-3xl font-bold text-center mb-12">Featured AI Projects</h2>
179
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
180
+ <!-- Project 1 -->
181
+ <div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
182
+ <div class="h-48 bg-indigo-100 flex items-center justify-center">
183
+ <i class="fas fa-robot text-6xl text-indigo-600"></i>
184
+ </div>
185
+ <div class="p-6">
186
+ <h3 class="text-xl font-semibold mb-2">AutoClient</h3>
187
+ <p class="text-gray-600 mb-4">AI-powered client acquisition system that automates lead generation and qualification.</p>
188
+ <a href="#" class="text-indigo-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
189
+ </div>
190
+ </div>
191
+
192
+ <!-- Project 2 -->
193
+ <div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
194
+ <div class="h-48 bg-blue-100 flex items-center justify-center">
195
+ <i class="fas fa-chart-line text-6xl text-blue-600"></i>
196
+ </div>
197
+ <div class="p-6">
198
+ <h3 class="text-xl font-semibold mb-2">Market Intelligence Scraper</h3>
199
+ <p class="text-gray-600 mb-4">Advanced web scraping tool that collects and analyzes market data to provide actionable business intelligence.</p>
200
+ <a href="#" class="text-blue-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
201
+ </div>
202
+ </div>
203
+
204
+ <!-- Project 3 -->
205
+ <div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
206
+ <div class="h-48 bg-green-100 flex items-center justify-center">
207
+ <i class="fas fa-database text-6xl text-green-600"></i>
208
+ </div>
209
+ <div class="p-6">
210
+ <h3 class="text-xl font-semibold mb-2">Business Data Analyzer</h3>
211
+ <p class="text-gray-600 mb-4">Multimodal AI tool that analyzes company data across various formats and generates visual reports.</p>
212
+ <a href="#" class="text-green-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Project 4 -->
217
+ <div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
218
+ <div class="h-48 bg-yellow-100 flex items-center justify-center">
219
+ <i class="fab fa-bitcoin text-6xl text-yellow-600"></i>
220
+ </div>
221
+ <div class="p-6">
222
+ <h3 class="text-xl font-semibold mb-2">CryptoAgent</h3>
223
+ <p class="text-gray-600 mb-4">Automated cryptocurrency trading system that combines web scraping with sophisticated algorithms.</p>
224
+ <a href="#" class="text-yellow-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
225
+ </div>
226
+ </div>
227
+
228
+ <!-- Project 5 -->
229
+ <div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
230
+ <div class="h-48 bg-purple-100 flex items-center justify-center">
231
+ <i class="fas fa-file-excel text-6xl text-purple-600"></i>
232
+ </div>
233
+ <div class="p-6">
234
+ <h3 class="text-xl font-semibold mb-2">Document & Spreadsheet Expert</h3>
235
+ <p class="text-gray-600 mb-4">AI system that processes and analyzes business documents and spreadsheets, extracting key information.</p>
236
+ <a href="#" class="text-purple-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Project 6 -->
241
+ <div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
242
+ <div class="h-48 bg-pink-100 flex items-center justify-center">
243
+ <i class="fas fa-code text-6xl text-pink-600"></i>
244
+ </div>
245
+ <div class="p-6">
246
+ <h3 class="text-xl font-semibold mb-2">Melinda AI</h3>
247
+ <p class="text-gray-600 mb-4">AI-powered web development assistant that automates website creation and optimization.</p>
248
+ <a href="#" class="text-pink-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
249
+ </div>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </section>
254
+
255
+ <!-- Experience Section -->
256
+ <section id="experience" class="py-20 bg-white">
257
+ <div class="container mx-auto px-6">
258
+ <h2 class="text-3xl font-bold text-center mb-12">Professional Experience</h2>
259
+ <div class="max-w-3xl mx-auto">
260
+ <!-- Timeline Item 1 -->
261
+ <div class="relative timeline-item pl-8 pb-8">
262
+ <div class="absolute left-0 top-0 w-4 h-4 bg-indigo-600 rounded-full"></div>
263
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
264
+ <div class="flex justify-between items-start mb-2">
265
+ <h3 class="text-xl font-semibold">AI Project Leader</h3>
266
+ <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">2023 - Present</span>
267
+ </div>
268
+ <h4 class="text-lg text-indigo-600 mb-3">MelindaAI</h4>
269
+ <p class="text-gray-700">Spearheading AI projects with cutting-edge solutions for complex problems, specializing in machine learning, neural networks, and data analysis.</p>
270
+ </div>
271
+ </div>
272
+
273
+ <!-- Timeline Item 2 -->
274
+ <div class="relative timeline-item pl-8 pb-8">
275
+ <div class="absolute left-0 top-0 w-4 h-4 bg-indigo-600 rounded-full"></div>
276
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
277
+ <div class="flex justify-between items-start mb-2">
278
+ <h3 class="text-xl font-semibold">SEO Consultant and Digital Strategist</h3>
279
+ <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">2010 - 2023</span>
280
+ </div>
281
+ <h4 class="text-lg text-indigo-600 mb-3">Megawebs</h4>
282
+ <p class="text-gray-700">Optimized over 70 websites and digital projects, achieving significant organic growth in web traffic and conversion rates.</p>
283
+ </div>
284
+ </div>
285
+
286
+ <!-- Timeline Item 3 -->
287
+ <div class="relative timeline-item pl-8 pb-8">
288
+ <div class="absolute left-0 top-0 w-4 h-4 bg-indigo-600 rounded-full"></div>
289
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
290
+ <div class="flex justify-between items-start mb-2">
291
+ <h3 class="text-xl font-semibold">Senior Full Stack Developer</h3>
292
+ <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">2019 - 2023</span>
293
+ </div>
294
+ <h4 class="text-lg text-indigo-600 mb-3">Damehosting</h4>
295
+ <p class="text-gray-700">Led the development and maintenance of intricate web systems, ensuring timely project delivery with high quality.</p>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Timeline Item 4 -->
300
+ <div class="relative timeline-item pl-8 pb-8">
301
+ <div class="absolute left-0 top-0 w-4 h-4 bg-indigo-600 rounded-full"></div>
302
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
303
+ <div class="flex justify-between items-start mb-2">
304
+ <h3 class="text-xl font-semibold">Programming and AI Instructor</h3>
305
+ <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">2022 - Present</span>
306
+ </div>
307
+ <p class="text-gray-700">Conducted masterclasses and workshops on programming and
308
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ create a complete and polsiehd landing page very polsiehd and perffect Sami Halawa Ribas AI & Technology Specialist +34 679 794 037 [email protected] About Me I am a Technological Specialist and Full Stack Programmer, focusing on Artificial Intelligence and Machine Learning. With over a decade of experience in SEO, Online Marketing, and E-Commerce, I have successfully launched numerous Apps, Websites, and projects. My expertise spans project management, development, and all stages from advertising to launch in physical stores and App Stores. Languages: English (C2), Mandarin Chinese (C2), Spanish (Native) Having lived and studied in China since age 15 on a UWC Scholarship, I am known for my creativity and problem-solving skills. I excel in optimizing solutions and resources to transform businesses and digital projects. By applying technical expertise and creativity, I tackle complex problems and thrive in challenging roles. Featured AI Projects AutoClient An AI-powered client acquisition system that automates lead generation and qualification. This tool identifies potential clients, analyzes their needs, and initiates personalized outreach, significantly reducing the sales cycle and increasing conversion rates. View Demo Market Intelligence Scraper Advanced web scraping tool that collects and analyzes market data to provide actionable business intelligence. Monitors competitor pricing, product offerings, and market trends to help businesses make data-driven decisions. View Demo Business Data Analyzer Multimodal AI tool that analyzes company data across various formats (documents, spreadsheets, presentations) and generates visual reports with actionable insights. Particularly valuable for executives focused on data-driven decision making. View Demo CryptoAgent Automated cryptocurrency trading system that combines web scraping for market intelligence with sophisticated algorithms for buying/selling decisions. Implements risk management strategies while maximizing return potential. View Demo Document & Spreadsheet Expert AI system that processes and analyzes business documents and spreadsheets, extracting key information and generating insights. Particularly useful for executive and HR tasks, automating document review and data extraction. View Demo Melinda AI AI-powered web development assistant that automates website creation and optimization. This tool streamlines the development process, reducing time-to-market and ensuring best practices in design and functionality. View Demo Professional Experience AI Project Leader MelindaAI Since 2023 Spearheading AI projects with cutting-edge solutions for complex problems, specializing in machine learning, neural networks, and data analysis. SEO Consultant and Digital Strategist Megawebs 2010-2023 Optimized over 70 websites and digital projects, achieving significant organic growth in web traffic and conversion rates. Senior Full Stack Developer Damehosting 2019-2023 Led the development and maintenance of intricate web systems, ensuring timely project delivery with high quality. Programming and AI Instructor Since 2022 Conducted masterclasses and workshops on programming and artificial intelligence, imparting practical knowledge and technical skills. Freelance Mobile App Expert 2015-Present Successfully developed and launched 20+ mobile applications for iOS and Android, including notable apps like "MelindaAI" and "KittyAI". Skills & Expertise Artificial Intelligence Machine Learning & Neural Networks PyTorch, TensorFlow, Keras Natural Language Processing Computer Vision Predictive Analytics Software Development Full Stack Development (Laravel, Flask, React) Mobile App Development (Swift, Kotlin, Flutter) HTML, CSS, JavaScript, PHP, Python Cross-platform Development (Electron, React Native) API Development & Integration SEO & Online Marketing On-page/Off-page SEO Strategies SEMrush, Ahrefs, Google Analytics PPC Campaign Management Google Ads, Meta Ads, TikTok Ads "The Chameleon SEO" Strategy Server Management & DevOps AWS Cloud Services, DigitalOcean Docker Containers CI/CD (Jenkins, GitLab CI/CD) Linux Administration Security Implementation Education Artificial Intelligence and Machine Learning 2016-2021 Computing, Servers, and Hardware 2015-2021 International Baccalaureate Lipochun United World School, Hong Kong Class of 2012 Awarded the UWC Full Scholarship by King Juan Carlos I Professional Certifications Google Analytics Google Ads SEO Mastery Laravel Developer iOS & Android App Development AWS Certified Solutions Architect Achievements & Recognitions Recipient of the prestigious 2012 United World Schools Full Scholarship, achieving 1st place in Spain. YouTube channel with over 170,000 followers featuring educational content and courses. Creation and development of apps and platforms recognized by a large user base. Adobe Certified Expert in Adobe After Effects, renowned as one of Spain's few experts. Produced a video course in Mandarin Chinese for the Chinese market. Published the book "Total Chinese" Learn Mandarin from 0, available on Amazon. Multilingual Expertise: Fluent in Mandarin and English at C2 level. As a dedicated professional, I prioritize tangible outcomes and strive for excellence in every endeavor. Through a blend of technical skills, creative vision, and international experience, I aim to drive success in any challenge or scenario. YouTube LinkedIn GitHub © 2024 Sami Halawa Ribas. All rights reserved.