Spaces:
Running
Running
<html lang="he" dir="rtl"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>שגיא בר און - מומחה AI ואוטומציה | קורסים, סדנאות וייעוץ</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap'); | |
body { | |
font-family: 'Rubik', sans-serif; | |
scroll-behavior: smooth; | |
} | |
.gradient-bg { | |
background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); | |
} | |
.hero-clip { | |
clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); | |
} | |
.testimonial-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.course-card:hover { | |
transform: scale(1.03); | |
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); | |
} | |
.nav-link { | |
position: relative; | |
} | |
.nav-link::after { | |
content: ''; | |
position: absolute; | |
width: 0; | |
height: 2px; | |
bottom: 0; | |
right: 0; | |
background-color: #3b82f6; | |
transition: width 0.3s ease; | |
} | |
.nav-link:hover::after { | |
width: 100%; | |
left: 0; | |
} | |
.floating { | |
animation: floating 3s ease-in-out infinite; | |
} | |
@keyframes floating { | |
0% { transform: translateY(0px); } | |
50% { transform: translateY(-10px); } | |
100% { transform: translateY(0px); } | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50 text-gray-800"> | |
<!-- Navigation --> | |
<nav class="bg-white shadow-lg sticky top-0 z-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16"> | |
<div class="flex items-center"> | |
<a href="#" class="flex-shrink-0 flex items-center"> | |
<img class="h-8 w-auto" src="https://i.imgur.com/xBhyaPP.png" alt="Sagi Bar-On Logo"> | |
</a> | |
</div> | |
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> | |
<a href="#home" class="nav-link px-3 py-2 text-sm font-medium text-gray-900 hover:text-blue-600">דף הבית</a> | |
<a href="#about" class="nav-link px-3 py-2 text-sm font-medium text-gray-900 hover:text-blue-600">אודות</a> | |
<a href="#courses" class="nav-link px-3 py-2 text-sm font-medium text-gray-900 hover:text-blue-600">קורסים וסדנאות</a> | |
<a href="#consulting" class="nav-link px-3 py-2 text-sm font-medium text-gray-900 hover:text-blue-600">ייעוץ ארגוני</a> | |
<a href="#resources" class="nav-link px-3 py-2 text-sm font-medium text-gray-900 hover:text-blue-600">משאבים</a> | |
<a href="#events" class="nav-link px-3 py-2 text-sm font-medium text-gray-900 hover:text-blue-600">אירועים קרובים</a> | |
<a href="#contact" class="nav-link px-3 py-2 text-sm font-medium text-gray-900 hover:text-blue-600">צור קשר</a> | |
</div> | |
<div class="-mr-2 flex items-center md:hidden"> | |
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500"> | |
<span class="sr-only">Open main menu</span> | |
<i class="fas fa-bars"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Mobile menu --> | |
<div id="mobile-menu" class="hidden md:hidden"> | |
<div class="pt-2 pb-3 space-y-1"> | |
<a href="#home" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-blue-600 hover:bg-gray-50">דף הבית</a> | |
<a href="#about" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-blue-600 hover:bg-gray-50">אודות</a> | |
<a href="#courses" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-blue-600 hover:bg-gray-50">קורסים וסדנאות</a> | |
<a href="#consulting" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-blue-600 hover:bg-gray-50">ייעוץ ארגוני</a> | |
<a href="#resources" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-blue-600 hover:bg-gray-50">משאבים</a> | |
<a href="#events" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-blue-600 hover:bg-gray-50">אירועים קרובים</a> | |
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-blue-600 hover:bg-gray-50">צור קשר</a> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section id="home" class="hero-clip gradient-bg text-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32"> | |
<div class="md:flex items-center"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<h1 class="text-4xl md:text-5xl font-bold mb-6">העתיד כבר כאן<br>ובינה מלאכותית היא הדרך</h1> | |
<p class="text-xl mb-8">אני שגיא בר און, מומחה ל-AI ואוטומציה עם 25 שנות ניסיון בהייטק. אני מסייע ליחידים ולארגונים למנף את הטכנולוגיה המתקדמת ביותר כדי להשיג תוצאות יוצאות דופן.</p> | |
<div class="flex flex-wrap gap-4"> | |
<a href="#courses" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-semibold shadow-lg transition duration-300">הרשמה לקורסים</a> | |
<a href="#consulting" class="bg-transparent border-2 border-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-lg font-semibold shadow-lg transition duration-300">ייעוץ ארגוני</a> | |
</div> | |
<div class="mt-8 flex space-x-4"> | |
<a href="https://www.youtube.com/@SagiBaron" class="text-white hover:text-gray-200" target="_blank"><i class="fab fa-youtube text-2xl"></i></a> | |
<a href="https://www.linkedin.com/in/sagi-bar-on" class="text-white hover:text-gray-200" target="_blank"><i class="fab fa-linkedin text-2xl"></i></a> | |
<a href="https://www.facebook.com/sagi.baron" class="text-white hover:text-gray-200" target="_blank"><i class="fab fa-whatsapp text-2xl"></i></a> | |
</div> | |
</div> | |
<div class="md:w-1/2 flex justify-center"> | |
<img src="https://via.placeholder.com/500x500?text=Sagi+Bar-On" alt="Sagi Bar-On" class="rounded-full h-64 w-64 md:h-80 md:w-80 object-cover border-4 border-white shadow-xl floating"> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Stats Section --> | |
<section class="bg-white py-12"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center"> | |
<div class="p-4"> | |
<div class="text-4xl font-bold text-blue-600 mb-2">25+</div> | |
<div class="text-gray-600">שנות ניסיון</div> | |
</div> | |
<div class="p-4"> | |
<div class="text-4xl font-bold text-purple-600 mb-2">500+</div> | |
<div class="text-gray-600">משתתפי קורסים</div> | |
</div> | |
<div class="p-4"> | |
<div class="text-4xl font-bold text-blue-600 mb-2">50+</div> | |
<div class="text-gray-600">ארגונים שנתמכו</div> | |
</div> | |
<div class="p-4"> | |
<div class="text-4xl font-bold text-purple-600 mb-2">30K+</div> | |
<div class="text-gray-600">עוקבים ברשתות</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section id="about" class="bg-gray-50 py-20"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold text-gray-900 mb-4">הסיפור שלי</h2> | |
<div class="w-20 h-1 bg-blue-600 mx-auto"></div> | |
</div> | |
<div class="md:flex items-center"> | |
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10"> | |
<img src="https://i.imgur.com/cnlxCuj.jpeg" alt="Sagi Teaching" class="rounded-lg shadow-xl w-full"> | |
</div> | |
<div class="md:w-1/2"> | |
<h3 class="text-2xl font-semibold text-gray-800 mb-4">מי אני?</h3> | |
<p class="text-gray-600 mb-6">שמי שגיא בר און, ואני מומחה בעל שם עולמי בתחומי הבינה המלאכותית והאוטומציה. במהלך 25 השנים האחרונות צברתי ניסיון רב בתעשיית ההייטק, תוך התמחות בפיתוח ויישום פתרונות טכנולוגיים מתקדמים.</p> | |
<h3 class="text-2xl font-semibold text-gray-800 mb-4">השכלה והסמכות</h3> | |
<ul class="mb-6 space-y-2"> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i> | |
<span>תואר שני במנהל עסקים עם התמחות בבינה מלאכותית</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i> | |
<span>תואר ראשון (BSc) במדעי המחשב והנדסאי תוכנה</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i> | |
<span>מאסטר NLP</span> | |
</li> | |
</ul> | |
<h3 class="text-2xl font-semibold text-gray-800 mb-4">הפילוסופיה שלי</h3> | |
<p class="text-gray-600">אני מאמין שהטכנולוגיה צריכה להיות נגישה ומובנת לכולם. המטרה שלי היא להפוך את עולם ה-AI והאוטומציה לפשוט ובר-יישום, כך שכל אחד יוכל למנף אותו להצלחה אישית וארגונית.</p> | |
<div class="mt-8"> | |
<a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-semibold shadow-lg transition duration-300">צור קשר</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Courses Section --> | |
<section id="courses" class="bg-white py-20"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold text-gray-900 mb-4">קורסים וסדנאות</h2> | |
<p class="text-xl text-gray-600 max-w-3xl mx-auto">הכשרות מעשיות וממוקדות להקניית ידע וכלים מתקדמים בתחום ה-AI והאוטומציה</p> | |
<div class="w-20 h-1 bg-blue-600 mx-auto mt-4"></div> | |
</div> | |
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Course 1 --> | |
<div class="bg-white rounded-xl shadow-lg overflow-hidden course-card transition duration-300"> | |
<div class="h-48 bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center"> | |
<i class="fas fa-robot text-white text-6xl"></i> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">יסודות הבינה המלאכותית</h3> | |
<p class="text-gray-600 mb-4">קורס בסיסי למתחילים המעוניינים להבין את עקרונות ה-AI וליישם אותם בעבודה ובחיי היום-יום.</p> | |
<div class="flex items-center text-sm text-gray-500 mb-4"> | |
<i class="far fa-clock mr-2"></i> | |
<span>12 מפגשים שבועיים</span> | |
</div> | |
<div class="flex items-center text-sm text-gray-500 mb-4"> | |
<i class="fas fa-user-graduate mr-2"></i> | |
<span>רמה: מתחילים</span> | |
</div> | |
<div class="flex justify-between items-center"> | |
<span class="text-xl font-bold text-gray-800">₪2,400</span> | |
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-semibold transition duration-300">הרשמה</a> | |
</div> | |
</div> | |
</div> | |
<!-- Course 2 --> | |
<div class="bg-white rounded-xl shadow-lg overflow-hidden course-card transition duration-300"> | |
<div class="h-48 bg-gradient-to-r from-purple-500 to-blue-600 flex items-center justify-center"> | |
<i class="fas fa-cogs text-white text-6xl"></i> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">אוטומציה מתקדמת למקצוענים</h3> | |
<p class="text-gray-600 mb-4">סדנה אינטנסיבית המלמדת כיצד לבנות מערכי אוטומציה מתקדמים לחיסכון בזמן והגדלת פרודוקטיביות.</p> | |
<div class="flex items-center text-sm text-gray-500 mb-4"> | |
<i class="far fa-clock mr-2"></i> | |
<span>8 מפגשים שבועיים</span> | |
</div> | |
<div class="flex items-center text-sm text-gray-500 mb-4"> | |
<i class="fas fa-user-graduate mr-2"></i> | |
<span>רמה: מתקדמים</span> | |
</div> | |
<div class="flex justify-between items-center"> | |
<span class="text-xl font-bold text-gray-800">₪3,200</span> | |
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-semibold transition duration-300">הרשמה</a> | |
</div> | |
</div> | |
</div> | |
<!-- Course 3 --> | |
<div class="bg-white rounded-xl shadow-lg overflow-hidden course-card transition duration-300"> | |
<div class="h-48 bg-gradient-to-r from-blue-400 to-purple-500 flex items-center justify-center"> | |
<i class="fas fa-brain text-white text-6xl"></i> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">למידת מכונה - מהתיאוריה למעשה</h3> | |
<p class="text-gray-600 mb-4">קורס מעמיק המשלב בין התיאוריה של אלגוריתמים לבין יישום מעשי בפרויקטים אמיתיים.</p> | |
<div class="flex items-center text-sm text-gray-500 mb-4"> | |
<i class="far fa-clock mr-2"></i> | |
<span>16 מפגשים שבועיים</span> | |
</div> | |
<div class="flex items-center text-sm text-gray-500 mb-4"> | |
<i class="fas fa-user-graduate mr-2"></i> | |
<span>רמה: ביניים-מתקדמים</span> | |
</div> | |
<div class="flex justify-between items-center"> | |
<span class="text-xl font-bold text-gray-800">₪4,800</span> | |
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-semibold transition duration-300">הרשמה</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="text-center mt-12"> | |
<a href="#" class="inline-flex items-center text-blue-600 hover:text-blue-800 font-semibold"> | |
<span>צפה בכל הקורסים והסדנאות</span> | |
<i class="fas fa-arrow-left ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- Consulting Section --> | |
<section id="consulting" class="bg-gray-50 py-20"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold text-gray-900 mb-4">ייעוץ ארגוני</h2> | |
<p class="text-xl text-gray-600 max-w-3xl mx-auto">הטמעת פתרונות AI ואוטומציה מותאמים אישית לצרכים העסקיים שלך</p> | |
<div class="w-20 h-1 bg-blue-600 mx-auto mt-4"></div> | |
</div> | |
<div class="md:flex"> | |
<div class="md:w-1/2 md:pr-10 mb-10 md:mb-0"> | |
<h3 class="text-2xl font-semibold text-gray-800 mb-6">כיצד אוכל לסייע לארגון שלך?</h3> | |
<div class="space-y-6"> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-chart-line"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h4 class="text-lg font-medium text-gray-900">ניתוח תהליכים</h4> | |
<p class="mt-1 text-gray-600">מיפוי וניתוח תהליכים ארגוניים לזיהוי הזדמנויות לאוטומציה וייעול.</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-robot"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h4 class="text-lg font-medium text-gray-900">פתרונות AI מותאמים</h4> | |
<p class="mt-1 text-gray-600">פיתוח והטמעת מודלים של בינה מלאכותית המותאמים לצרכים הספציפיים של הארגון.</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-users-cog"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h4 class="text-lg font-medium text-gray-900">הכשרת צוותים</h4> | |
<p class="mt-1 text-gray-600">סדנאות והכשרות פנים-ארגוניות להקניית ידע וכלים לעובדים.</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-project-diagram"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h4 class="text-lg font-medium text-gray-900">ליווי פרויקטים</h4> | |
<p class="mt-1 text-gray-600">ליווי צמוד לאורך כל שלבי הפרויקט - משלב האפיון ועד ההטמעה.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2 bg-white p-8 rounded-lg shadow-lg"> | |
<h3 class="text-2xl font-semibold text-gray-800 mb-6">לקבלת הצעת מחיר מותאמת</h3> | |
<form> | |
<div class="mb-4"> | |
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">שם מלא</label> | |
<input type="text" id="name" class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div class="mb-4"> | |
<label for="company" class="block text-sm font-medium text-gray-700 mb-1">ארגון</label> | |
<input type="text" id="company" class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div class="mb-4"> | |
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">אימייל</label> | |
<input type="email" id="email" class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div class="mb-4"> | |
<label for="phone" class="block text-sm font-medium text-gray-700 mb-1">טלפון</label> | |
<input type="tel" id="phone" class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div class="mb-4"> | |
<label for="needs" class="block text-sm font-medium text-gray-700 mb-1">תיאור הצרכים</label> | |
<textarea id="needs" rows="4" class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"></textarea> | |
</div> | |
<div> | |
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md font-medium shadow-lg transition duration-300">שלח פנייה</button> | |
</div> | |
</form> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials Section --> | |
<section class="bg-white py-20"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold text-gray-900 mb-4">מה אומרים עליי</h2> | |
<div class="w-20 h-1 bg-blue-600 mx-auto"></div> | |
</div> | |
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Testimonial 1 --> | |
<div class="bg-gray-50 p-6 rounded-lg testimonial-card transition duration-300 shadow-md hover:shadow-xl"> | |
<div class="flex items-center mb-4"> | |
<img src="https://via.placeholder.com/80x80?text=Client" alt="Client" class="w-12 h-12 rounded-full object-cover"> | |
<div class="ml-4"> | |
<h4 class="font-semibold text-gray-800">דניאל כהן</h4> | |
<p class="text-sm text-gray-500">מנהל פיתוח, טק-סולושנס</p> | |
</div> | |
</div> | |
<p class="text-gray-600">"הקורס של שגיא שינה את הדרך בה אנחנו עובדים. הצלחנו להטמיע מערכי אוטומציה שהפחיתו את זמן העבודה על משימות שגרתיות ב-70%. ההסברים הברורים והדוגמאות המעשיות הפכו נושא מורכב לפשוט ובר-יישום."</p> | |
<div class="mt-4 flex text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<!-- Testimonial 2 --> | |
<div class="bg-gray-50 p-6 rounded-lg testimonial-card transition duration-300 shadow-md hover:shadow-xl"> | |
<div class="flex items-center mb-4"> | |
<img src="https://via.placeholder.com/80x80?text=Client" alt="Client" class="w-12 h-12 rounded-full object-cover"> | |
<div class="ml-4"> | |
<h4 class="font-semibold text-gray-800">שירלי לוי</h4> | |
<p class="text-sm text-gray-500">מנהלת שיווק, דיגיטל-פרו</p> | |
</div> | |
</div> | |
<p class="text-gray-600">"הסדנה עם שגיא הייתה נקודת מפנה עבור הצוות שלנו. הוא הצליח להעביר ידע טכני מורכב בצורה שכל אחד יכול להבין. תוך חודשיים מההכשרה כבר פיתחנו מודל AI פנימי שמסייע לנו בניתוח קמפיינים."</p> | |
<div class="mt-4 flex text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<!-- Testimonial 3 --> | |
<div class="bg-gray-50 p-6 rounded-lg testimonial-card transition duration-300 shadow-md hover:shadow-xl"> | |
<div class="flex items-center mb-4"> | |
<img src="https://via.placeholder.com/80x80?text=Client" alt="Client" class="w-12 h-12 rounded-full object-cover"> | |
<div class="ml-4"> | |
<h4 class="font-semibold text-gray-800">איתן מזרחי</h4> | |
<p class="text-sm text-gray-500">סטודנט, קורס AI למתחילים</p> | |
</div> | |
</div> | |
<p class="text-gray-600">"הגעתי לקורס בלי שום רקע קודם בתחום. שגיא הצליח להפוך נושאים מורכבים להבנה פשוטה עם דוגמאות מהחיים האמיתיים. עכשיו אני משתמש בכלים שלמדתי גם בעבודה וגם בפרויקטים אישיים. ממליץ בחום!"</p> | |
<div class="mt-4 flex text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star-half-alt"></i> | |
</div> | |
</div> | |
</div> | |
<div class="mt-12 text-center"> | |
<a href="#" class="inline-flex items-center text-blue-600 hover:text-blue-800 font-semibold"> | |
<span>עוד המלצות</span> | |
<i class="fas fa-arrow-left ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- Resources Section --> | |
<section id="resources" class="bg-gray-50 py-20"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold text-gray-900 mb-4">משאבים חינמיים</h2> | |
<p class="text-xl text-gray-600 max-w-3xl mx-auto">תוכן איכותי להעשרת הידע שלך בתחום ה-AI והאוטומציה</p> | |
<div class="w-20 h-1 bg-blue-600 mx-auto mt-4"></div> | |
</div> | |
<div class="grid md:grid-cols-3 gap-8"> | |
<!-- Blog --> | |
<div class="bg-white p-6 rounded-lg shadow-lg"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white mb-4"> | |
<i class="fas fa-blog"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-3">בלוג</h3> | |
<p class="text-gray-600 mb-4">מאמרים מקצועיים, מדריכים וטיפים מעשיים בתחום ה-AI והאוטומציה.</p> | |
<a href="#" class="text-blue-600 hover:text-blue-800 font-medium inline-flex items-center"> | |
<span>קרא מאמרים</span> | |
<i class="fas fa-arrow-left ml-2"></i> | |
</a> | |
</div> | |
<!-- YouTube --> | |
<div class="bg-white p-6 rounded-lg shadow-lg"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-600 text-white mb-4"> | |
<i class="fab fa-youtube"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-3">ערוץ יוטיוב</h3> | |
<p class="text-gray-600 mb-4">סרטוני הדרכה, הרצאות וניתוחי מקרה מהשטח.</p> | |
<a href="https://www.youtube.com/@SagiBaron" class="text-blue-600 hover:text-blue-800 font-medium inline-flex items-center" target="_blank"> | |
<span>צפה בסרטונים</span> | |
<i class="fas fa-arrow-left ml-2"></i> | |
</a> | |
</div> | |
<!-- WhatsApp Group --> | |
<div class="bg-white p-6 rounded-lg shadow-lg"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-500 text-white mb-4"> | |
<i class="fab fa-whatsapp"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-3">קבוצת ווטסאפ</h3> | |
<p class="text-gray-600 mb-4">הצטרף לקהילה פעילה של אנשי מקצוע וחובבי AI ואוטומציה.</p> | |
<a href="https://chat.whatsapp.com/GpfasYbEA9cFGUmCvz5RxP" class="text-blue-600 hover:text-blue-800 font-medium inline-flex items-center" target="_blank"> | |
<span>הצטרף עכשיו</span> | |
<i class="fas fa-arrow-left ml-2"></i> | |
</a> | |
</div> | |
</div> | |
<!-- Featured Video --> | |
<div class="mt-16 bg-white p-6 rounded-lg shadow-lg"> | |
<h3 class="text-2xl font-semibold text-gray-800 mb-6 text-center">סרטון נבחר מהערוץ</h3> | |
<div class="aspect-w-16 aspect-h-9"> | |
<iframe class="w-full h-96 rounded-lg" src="https://www.youtube.com/embed/F_dOhQ71Kds" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Events Section --> | |
<section id="events" class="bg-white py-20"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold text-gray-900 mb-4">אירועים קרובים</h2> | |
<p class="text-xl text-gray-600 max-w-3xl mx-auto">הרצאות, סדנאות ואירועים מיוחדים הקרובים</p> | |
<div class="w-20 h-1 bg-blue-600 mx-auto mt-4"></div> | |
</div> | |
<div class="grid md:grid-cols-2 gap-8"> | |
<!-- Event 1 --> | |
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-lg"> | |
<div class="md:flex"> | |
<div class="md:w-1/3 bg-blue-600 text-white p-6 flex flex-col items-center justify-center"> | |
<div class="text-4xl font-bold">15</div> | |
<div class="text-xl">יוני</div> | |
<div class="mt-4 text-sm">18:00-21:00</div> | |
</div> | |
<div class="md:w-2/3 p-6"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">וובינר: AI לעסקים קטנים</h3> | |
<p class="text-gray-600 mb-4">כיצד עסקים קטנים ובינוניים יכולים למנף בינה מלאכותית להגדלת מכירות ושיפור השירות.</p> | |
<div class="flex items-center text-sm text-gray-500 mb-4"> | |
<i class="fas fa-map-marker-alt mr-2"></i> | |
<span>אונליין - זום</span> | |
</div> | |
<a href="#" class="inline-block bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-semibold transition duration-300">הרשמה</a> | |
</div> | |
</div> | |
</div> | |
<!-- Event 2 --> | |
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-lg"> | |
<div class="md:flex"> | |
<div class="md:w-1/3 bg-purple-600 text-white p-6 flex flex-col items-center justify-center"> | |
<div class="text-4xl font-bold">28</div> | |
<div class="text-xl">יוני</div> | |
<div class="mt-4 text-sm">09:00-17:00</div> | |
</div> | |
<div class="md:w-2/3 p-6"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">סדנת אוטומציה למתקדמים</h3> | |
<p class="text-gray-600 mb-4">סדנה מעשית בת יום אחד להקניית כלים מתקדמים לבניית מערכי אוטומציה מורכבים.</p> | |
<div class="flex items-center text-sm text-gray-500 mb-4"> | |
<i class="fas fa-map-marker-alt mr-2"></i> | |
<span>מרכז תל אביב</span> | |
</div> | |
<a href="#" class="inline-block bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-lg text-sm font-semibold transition duration-300">הרשמה</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="mt-12 text-center"> | |
<a href="#" class="inline-flex items-center text-blue-600 hover:text-blue-800 font-semibold"> | |
<span>כל האירועים</span> | |
<i class="fas fa-arrow-left ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section id="contact" class="bg-gray-50 py-20"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold text-gray-900 mb-4">צור קשר</h2> | |
<p class="text-xl text-gray-600 max-w-3xl mx-auto">מוזמן לפנות בכל שאלה, בקשה או לקביעת פגישת ייעוץ</p> | |
<div class="w-20 h-1 bg-blue-600 mx-auto mt-4"></div> | |
</div> | |
<div class="md:flex"> | |
<div class="md:w-1/2 md:pr-10 mb-10 md:mb-0"> | |
<h3 class="text-2xl font-semibold text-gray-800 mb-6">פרטי התקשרות</h3> | |
<div class="space-y-6"> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-envelope"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h4 class="text-lg font-medium text-gray-900">אימייל</h4> | |
<p class="mt-1 text-gray-600">[email protected]</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-phone"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h4 class="text-lg font-medium text-gray-900">טלפון</h4> | |
<p class="mt-1 text-gray-600">054-9995050</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-map-marker-alt"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h4 class="text-lg font-medium text-gray-900">מיקום</h4> | |
<p class="mt-1 text-gray-600">קיבוץ פלמחים, ישראל</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white"> | |
<i class="fas fa-clock"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h4 class="text-lg font-medium text-gray-900">שעות פעילות</h4> | |
<p class="mt-1 text-gray-600">א'-ה' 09:00-18:00</p> | |
</div> | |
</div> | |
</div> | |
<h3 class="text-2xl font-semibold text-gray-800 mt-10 mb-6">עקוב אחריי ברשתות</h3> | |
<div class="flex space-x-4"> | |
<a href="#" class="h-10 w-10 rounded-full bg-blue-600 text-white flex items-center justify-center hover:bg-blue-700 transition duration-300"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
<a href="#" class="h-10 w-10 rounded-full bg-blue-400 text-white flex items-center justify-center hover:bg-blue-500 transition duration-300"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="h-10 w-10 rounded-full bg-red-600 text-white flex items-center justify-center hover:bg-red-700 transition duration-300"> | |
<i class="fab fa-youtube"></i> | |
</a> | |
<a href="#" class="h-10 w-10 rounded-full bg-green-500 text-white flex items-center justify-center hover:bg-green-600 transition duration-300"> | |
<i class="fab fa-whatsapp"></i> | |
</a> | |
</div> | |
</div> | |
<div class="md:w-1/2 bg-white p-8 rounded-lg shadow-lg"> | |
<h3 class="text-2xl font-semibold text-gray-800 mb-6">שלח הודעה</h3> | |
<form> | |
<div class="mb-4"> | |
<label for="contact-name" class="block text-sm font-medium text-gray-700 mb-1">שם מלא</label> | |
<input type="text" id="contact-name" class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div class="mb-4"> | |
<label for="contact-email" class="block text-sm font-medium text-gray-700 mb-1">אימייל</label> | |
<input type="email" id="contact-email" class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div class="mb-4"> | |
<label for="contact-phone" class="block text-sm font-medium text-gray-700 mb-1">טלפון</label> | |
<input type="tel" id="contact-phone" class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div class="mb-4"> | |
<label for="contact-subject" class="block text-sm font-medium text-gray-700 mb-1">נושא</label> | |
<select id="contact-subject" class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"> | |
<option>בחירת נושא</option> | |
<option>קורסים וסדנאות</option> | |
<option>ייעוץ ארגוני</option> | |
<option>שאלה כללית</option> | |
<option>הרצאות ואירועים</option> | |
<option>אחר</option> | |
</select> | |
</div> | |
<div class="mb-4"> | |
<label for="contact-message" class="block text-sm font-medium text-gray-700 mb-1">הודעה</label> | |
<textarea id="contact-message" rows="4" class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500"></textarea> | |
</div> | |
<div> | |
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md font-medium shadow-lg transition duration-300">שלח הודעה</button> | |
</div> | |
</form> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Newsletter Section --> | |
<section class="bg-gradient-to-r from-blue-500 to-purple-600 text-white py-16"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
<h2 class="text-3xl font-bold mb-6">הישאר מעודכן</h2> | |
<p class="text-xl mb-8 max-w-3xl mx-auto">הרשם לניוזלטר שלי וקבל עדכונים על קורסים חדשים, מאמרים מעניינים ואירועים קרובים</p> | |
<form class="max-w-md mx-auto"> | |
<div class="flex"> | |
<input type="email" placeholder="האימייל שלך" class="flex-grow px-4 py-3 rounded-r-lg focus:outline-none text-gray-900"> | |
<button type="submit" class="bg-purple-800 hover:bg-purple-900 px-6 py-3 rounded-l-lg font-semibold transition duration-300">הרשמה</button> | |
</div> | |
</form> | |
<p class="mt-4 text-sm opacity-80">אנו מכבדים את הפרטיות שלך. לא נשתף את האימייל שלך עם אף אחד.</p> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-900 text-white py-12"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid md:grid-cols-4 gap-8"> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">שגיא בר און</h3> | |
<p class="text-gray-400">מומחה ל-AI ואוטומציה עם 25 שנות ניסיון בהייטק. מסייע ליחידים ולארגונים למנף את הטכנולוגיה המתקדמת ביותר.</p> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">קישורים מהירים</h3> | |
<ul class="space-y-2"> | |
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">דף הבית</a></li> | |
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">אודות</a></li> | |
<li><a href="#courses" class="text-gray-400 hover:text-white transition duration-300">קורסים וסדנאות</a></li> | |
<li><a href="#consulting" class="text-gray-400 hover:text-white transition duration-300">ייעוץ ארגוני</a></li> | |
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">צור קשר</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">משאבים</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300" target="_blank">בלוג</a></li> | |
<li><a href="https://www.youtube.com/@SagiBaron" class="text-gray-400 hover:text-white transition duration-300" target="_blank">ערוץ יוטיוב</a></li> | |
<li><a href="https://chat.whatsapp.com/GpfasYbEA9cFGUmCvz5RxP" class="text-gray-400 hover:text-white transition duration-300" target="_blank">קבוצת ווטסאפ</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">שאלות נפוצות</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">מדיניות פרטיות</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">צור קשר</h3> | |
<ul class="space-y-2 text-gray-400"> | |
<li class="flex items-start"> | |
<i class="fas fa-map-marker-alt mt-1 mr-2"></i> | |
<span>קיבוץ פלמחים, ישראל</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-phone mt-1 mr-2"></i> | |
<span>054-9995050</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-envelope mt-1 mr-2"></i> | |
<span>[email protected]</span> | |
</li> | |
</ul> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
<div class="text-gray-400 mb-4 md:mb-0"> | |
© 2023 שגיא בר און - כל הזכויות שמורות | |
</div> | |
<div class="flex space-x-6"> | |
<a href="https://www.linkedin.com/in/sagi-bar-on" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="https://www.youtube.com/@SagiBaron" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-youtube"></i> | |
</a> | |
<a href="https://chat.whatsapp.com/GpfasYbEA9cFGUmCvz5RxP" class="text-gray-400 hover:text-white transition duration-300" target="_blank"> | |
<i class="fab fa-whatsapp"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<!-- Back to Top Button --> | |
<button id="back-to-top" class="fixed bottom-6 right-6 bg-blue-600 text-white p-3 rounded-full shadow-lg opacity-0 invisible transition-all duration-300"> | |
<i class="fas fa-arrow-up"></i> | |
</button> | |
<script> | |
// Mobile menu toggle | |
document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
const menu = document.getElementById('mobile-menu'); | |
menu.classList.toggle('hidden'); | |
}); | |
// Back to top button | |
const backToTopButton = document.getElementById('back-to-top'); | |
window.addEventListener('scroll', function() { | |
if (window.pageYOffset > 300) { | |
backToTopButton.classList.remove('opacity-0', 'invisible'); | |
backToTopButton.classList.add('opacity-100', 'visible'); | |
} else { | |
backToTopButton.classList.remove('opacity-100', 'visible'); | |
backToTopButton.classList.add('opacity-0', 'invisible'); | |
} | |
}); | |
backToTopButton.addEventListener('click', function() { | |
window.scrollTo({ | |
top: 0, | |
behavior: 'smooth' | |
}); | |
}); | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
const targetId = this.getAttribute('href'); | |
const targetElement = document.querySelector(targetId); | |
if (targetElement) { | |
window.scrollTo({ | |
top: targetElement.offsetTop - 80, | |
behavior: 'smooth' | |
}); | |
// Close mobile menu if open | |
const mobileMenu = document.getElementById('mobile-menu'); | |
if (!mobileMenu.classList.contains('hidden')) { | |
mobileMenu.classList.add('hidden'); | |
} | |
} | |
}); | |
}); | |
</script> | |
<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=theWitcher/sagi" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |