File size: 1,071 Bytes
5df55ff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | """Sample startup data for demos and testing."""
EVENTRADAR_SAMPLE = {
"name": "EventRadar AI",
"problem": (
"Students miss hackathons, tech events, and startup opportunities because "
"discovery is scattered across WhatsApp groups, LinkedIn, Luma, college clubs, "
"and random websites."
),
"target_users": "College students, student founders, and early-stage builders.",
"solution": (
"AI-powered event discovery that ranks opportunities based on skills, goals, "
"location, and deadline urgency."
),
"why_ai": (
"The app does not just list events. It matches events to a student's profile "
"and explains why each event is worth attending."
),
"competitors": "Luma, LinkedIn Events, WhatsApp groups, college club pages.",
"traction": "Prototype built with scraped event data and ranking logic.",
"ask": "Hackathon prize and mentor feedback.",
}
def get_sample_startup() -> dict:
"""Return the EventRadar AI sample startup."""
return dict(EVENTRADAR_SAMPLE)
|