Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,3 @@
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

880 changes: 557 additions & 323 deletions package-lock.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styles from "./styles.module.css";
import { CardProps } from "../../types";

export default function ChayaSprungCard({ student, onClick }: CardProps) {
export default function YaelShitritCard({ student, onClick }: CardProps) {
return (
<div onClick={onClick} className={`joke-card ${styles.card}`}>
<h2 className={styles.title}>{student.jokeTitle}</h2>
Expand Down
28 changes: 28 additions & 0 deletions src/students/Yael-Shitrit/JokePage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import styles from "./styles.module.css";
import { PageProps } from "../../types";

export default function YaelShitritJokePage({ onBack }: PageProps) {
return (
<div className={styles.container}>
<div className={styles.card}>
<h1 className={styles.title}>באג של מתכנתים</h1>

<p className={styles.jokeText}>
מתכנת אחד הולך למכולת. אשתו אומרת לו:<br />
<strong>"תקנה בבקשה כיכר לחם אחת, ואם יש ביצים – תקנה עשר".</strong>
<br /><br />
המתכנת מגיע למכולת, רואה שיש ביצים, וחוזר הביתה עם עשר כיכרי לחם.<br /><br />
אשתו ההמומה שואלת אותו: "למה קנית עשר כיכרי לחם?!"
</p>

<div className={styles.punchline}>
אומר הלה: "כי היו ביצים!"
</div>

<div className={styles.decor}>
🥚 🍞
</div>
</div>
</div>
);
}
69 changes: 69 additions & 0 deletions src/students/Yael-Shitrit/styles.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/* מיכל ראשי - אוירה בהירה, רעננה ונשייה */
.container {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
padding: 20px;
direction: rtl;
}

/* כרטיס הבדיחה - מעוצב, בולט ונקי */
.card {
background-color: #ffffff;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
padding: 40px;
max-width: 600px;
width: 100%;
text-align: center;
border: 1px solid #e1e8ed;
transition: transform 0.2s ease;
}

.card:hover {
transform: translateY(-5px);
}

/* כותרת הבדיחה - גדולה וברורה */
.title {
font-size: 2.2rem;
color: #2c3e50;
margin-bottom: 25px;
font-weight: 700;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
display: inline-block;
}

/* גוף הבדיחה והדיאלוגים - אותיות גדולות וקריאות */
.jokeText {
font-size: 1.35rem;
line-height: 1.8;
color: #34495e;
margin-bottom: 30px;
text-align: right;
white-space: pre-line; /* שומר על ירידת שורות קריאה */
}

/* הדגשה לפאנץ' ליין בסוף */
.punchline {
font-size: 1.5rem;
font-weight: bold;
color: #e74c3c;
background-color: #fdf2f2;
padding: 15px;
border-radius: 8px;
border-right: 5px solid #e74c3c;
margin-top: 20px;
}

/* אלמנט עיטורי קטן בתחתית שקשור למכולת וביצים */
.decor {
font-size: 2rem;
margin-top: 20px;
opacity: 0.8;
}
13 changes: 0 additions & 13 deletions src/students/chaya-sprung/JokePage.tsx

This file was deleted.

92 changes: 0 additions & 92 deletions src/students/chaya-sprung/styles.module.css

This file was deleted.

11 changes: 0 additions & 11 deletions src/students/efrat-mittelman/Card.tsx

This file was deleted.

15 changes: 0 additions & 15 deletions src/students/efrat-mittelman/JokePage.tsx

This file was deleted.

Loading