| """Fictional demo texts. Nothing here is real — generic, portfolio-safe.""" |
|
|
| JOB_TEXT = ( |
| "We're hiring a Senior Backend Engineer at NimbusForge, a fully-remote team. " |
| "You'll design Python services backed by PostgreSQL and ship them on Kubernetes. " |
| "Compensation is 75,000–95,000 EUR depending on experience." |
| ) |
|
|
| CONTACT_TEXT = ( |
| "Hi! I'm Dana Okoro, Head of Partnerships at BlueHarbor. " |
| "You can reach me at dana.okoro@blueharbor.example or on +33 6 12 34 56 78." |
| ) |
|
|
| PRODUCT_TEXT = ( |
| "The TrailLite X2 is a 1.1 kg ultralight tent in our camping range. " |
| "It's priced at 249 USD and currently in stock. Highlights: two-person capacity, " |
| "double-wall design, 3-season rating and fully taped seams." |
| ) |
|
|
| |
| |
| |
| EVENT_TEXT = ( |
| "Quick sync about the Q3 roadmap, a handful of folks, pretty important, probably over video." |
| ) |
|
|
| |
| EXAMPLES = [ |
| [CONTACT_TEXT, "Contact card", True], |
| [PRODUCT_TEXT, "Product", True], |
| [EVENT_TEXT, "Event", True], |
| [EVENT_TEXT, "Event", False], |
| ] |
|
|