From 074c8b33403da146ca14073077d4b291ae8fbe4d Mon Sep 17 00:00:00 2001 From: Apurva-Lakhe Date: Sun, 7 Jun 2026 13:49:23 +0530 Subject: [PATCH] feat: add Entrepreneurship & Startup notes for Sem 7 --- app/components/subjects.tsx | 4 +- app/sem7/eas/[chapter]/page.tsx | 208 ++++++++++++++++++++++++++++ app/sem7/eas/components/Sidebar.tsx | 144 +++++++++++++++++++ app/sem7/eas/constants.ts | 54 ++++++++ app/sem7/eas/content/chapter0.tsx | 70 ++++++++++ app/sem7/eas/content/chapter1.tsx | 150 ++++++++++++++++++++ app/sem7/eas/content/chapter2.tsx | 118 ++++++++++++++++ app/sem7/eas/content/chapter3.tsx | 158 +++++++++++++++++++++ app/sem7/eas/content/chapter4.tsx | 204 +++++++++++++++++++++++++++ app/sem7/eas/layout.tsx | 16 +++ 10 files changed, 1124 insertions(+), 2 deletions(-) create mode 100644 app/sem7/eas/[chapter]/page.tsx create mode 100644 app/sem7/eas/components/Sidebar.tsx create mode 100644 app/sem7/eas/constants.ts create mode 100644 app/sem7/eas/content/chapter0.tsx create mode 100644 app/sem7/eas/content/chapter1.tsx create mode 100644 app/sem7/eas/content/chapter2.tsx create mode 100644 app/sem7/eas/content/chapter3.tsx create mode 100644 app/sem7/eas/content/chapter4.tsx create mode 100644 app/sem7/eas/layout.tsx diff --git a/app/components/subjects.tsx b/app/components/subjects.tsx index 724b848..762e4e9 100644 --- a/app/components/subjects.tsx +++ b/app/components/subjects.tsx @@ -115,7 +115,7 @@ const subjectCodes: Record = { "Information Retrieval": "ir", "Management Information Systems": "mis", "VLSI and Embedded Systems": "vlsi", - "Entrepreneurship & Startup": "es", + "Entrepreneurship & Startup": "eas", "Financial Management": "fm", "Robotic Access Automation": "raa", "Marketing Management": "mm", @@ -125,7 +125,7 @@ const subjectCodes: Record = { }; // Available subjects -const available = ["ep", "c", "em1", "em2", "oops", "dsc", "coa", "os", "ml", "dops", "cd", "cle","ec"]; +const available = ["ep", "c", "em1", "em2", "oops", "dsc", "coa", "os", "ml", "dops", "cd", "cle","ec","eas"]; export default function SubjectsSection() { return ( diff --git a/app/sem7/eas/[chapter]/page.tsx b/app/sem7/eas/[chapter]/page.tsx new file mode 100644 index 0000000..25619b6 --- /dev/null +++ b/app/sem7/eas/[chapter]/page.tsx @@ -0,0 +1,208 @@ +import Link from "next/link"; +import { Metadata } from "next"; +import { Righteous } from "next/font/google"; +import { ArrowBigLeft, ArrowBigRight } from "lucide-react"; + +import { chapters, Chapter, SubTopic } from "../constants"; +import { Ch0Content } from "../content/chapter0"; +import { Ch1Content } from "../content/chapter1"; +import { Ch2Content } from "../content/chapter2"; +import { Ch3Content } from "../content/chapter3"; +import { Ch4Content } from "../content/chapter4"; + +import BookmarkButton from "../../../components/BookmarkButton"; + +// Map chapter/subtopic IDs to their content components +const chapterComponents: Record = { + ch0: Ch0Content, + ch1: Ch1Content, + ch2: Ch2Content, + ch3: Ch3Content, + ch4: Ch4Content, +}; + +const righteous = Righteous({ + subsets: ["latin"], + weight: "400", + variable: "--font-righteous", +}); + +// Helper: find a chapter or subtopic by id +function findChapterOrSubtopic(chapterId: string) { + const chapter = chapters.find((c) => c.id === chapterId); + if (chapter) return { data: chapter, isSubTopic: false, parentChapter: null }; + + for (const ch of chapters) { + if (ch.subTopics) { + const sub = ch.subTopics.find( + (s) => s.id === chapterId && s.isPage + ) as (SubTopic & { isPage: true }) | undefined; + if (sub) return { data: sub, isSubTopic: true, parentChapter: ch }; + } + } + return { data: undefined, isSubTopic: false, parentChapter: null }; +} + +type ChapterProps = { + params: Promise<{ chapter: string }>; +}; + +// Dynamic SEO metadata +export async function generateMetadata({ params }: ChapterProps): Promise { + const { chapter: chapterId } = await params; + const { data: chapterData } = findChapterOrSubtopic(chapterId); + + const title = chapterData + ? `${chapterData.title} | Entrepreneurship & Startup | openCSE` + : "Entrepreneurship & Startup | openCSE"; + + return { title }; +} + +export default async function ChapterPage({ params }: ChapterProps) { + const { chapter: chapterId } = await params; + + const { data: chapterData, isSubTopic, parentChapter } = + findChapterOrSubtopic(chapterId); + + // 404 fallback + if (!chapterData) { + return ( +
+

Chapter not found

+ + Return to Course Outline + +
+ ); + } + + // For subtopics: use their parent chapter's content component + const componentKey = isSubTopic && parentChapter ? parentChapter.id : chapterData.id; + const ChapterComponent = chapterComponents[componentKey] ?? null; + + // Prev / Next navigation + let prevChapter: { id: string; title: string } | null = null; + let nextChapter: { id: string; title: string } | null = null; + + if (isSubTopic && parentChapter && parentChapter.subTopics) { + const pageSubTopics = parentChapter.subTopics.filter( + (s): s is SubTopic & { isPage: true } => !!s.isPage + ); + const subIndex = pageSubTopics.findIndex((s) => s.id === chapterId); + + if (subIndex > 0) { + prevChapter = pageSubTopics[subIndex - 1]; + } else { + prevChapter = { + id: parentChapter.id, + title: `Back to ${parentChapter.title}`, + }; + } + + if (subIndex < pageSubTopics.length - 1) { + nextChapter = pageSubTopics[subIndex + 1]; + } else { + const parentIndex = chapters.findIndex((c) => c.id === parentChapter.id); + if (parentIndex < chapters.length - 1) { + nextChapter = chapters[parentIndex + 1]; + } + } + } else { + const currentIndex = chapters.findIndex((c) => c.id === chapterId); + prevChapter = currentIndex > 0 ? chapters[currentIndex - 1] : null; + nextChapter = + currentIndex < chapters.length - 1 ? chapters[currentIndex + 1] : null; + } + + return ( +
+
+ {/* Subject title */} +

+ Entrepreneurship & Startup +

+ + {/* Chapter title + bookmark */} +
+

+ {isSubTopic && parentChapter + ? `${parentChapter.title} / ${chapterData.title}` + : chapterData.title} +

+ +
+ + {/* Top navigation */} +
+ {prevChapter ? ( + + Previous + + ) : ( +
+ )} + + {nextChapter ? ( + + Next + + ) : ( +
+ )} +
+ +
+ + {/* Chapter content */} + {ChapterComponent ? ( + + ) : ( +

+ Content coming soon. +

+ )} +
+ + {/* Bottom navigation */} +
+ {prevChapter ? ( + + + {prevChapter.title} + + ) : ( +
+ )} + + {nextChapter ? ( + + {nextChapter.title} + + + ) : ( +
+ )} +
+
+ ); +} diff --git a/app/sem7/eas/components/Sidebar.tsx b/app/sem7/eas/components/Sidebar.tsx new file mode 100644 index 0000000..90af724 --- /dev/null +++ b/app/sem7/eas/components/Sidebar.tsx @@ -0,0 +1,144 @@ +"use client"; +import { Righteous } from "next/font/google"; +import Link from "next/link"; +import { usePathname } from "next/navigation"; +import { useState, useEffect } from "react"; +import { chapters } from "../constants"; + +const righteous = Righteous({ + subsets: ["latin"], + weight: "400", + variable: "--font-righteous", +}); + +export default function Sidebar() { + const pathname = usePathname(); + const [open, setOpen] = useState(false); + + useEffect(() => { + if (window.innerWidth >= 768) { + setOpen(true); + } + }, []); + + const quizHref = "/quiz/eas"; + const quizActive = pathname.startsWith("/quiz"); + + return ( + <> + {/* Backdrop overlay - only on mobile when open */} +
setOpen(false)} + /> + +
+ {/* Sidebar */} + + + +
+ + ); +} diff --git a/app/sem7/eas/constants.ts b/app/sem7/eas/constants.ts new file mode 100644 index 0000000..0966797 --- /dev/null +++ b/app/sem7/eas/constants.ts @@ -0,0 +1,54 @@ +export type SubTopic = + | { id: string; title: string; isPage: true } + | { id: string; title: string; isPage?: false }; + +export type Chapter = { + id: string; + title: string; + subTopics?: SubTopic[]; +}; + +export const chapters: Chapter[] = [ + { id: "ch0", title: "Course Outline" }, + { + id: "ch1", + title: "Fundamentals of Entrepreneurship", + subTopics: [ + { id: "ch1-concept", title: "Concept of Entrepreneurship", isPage: true }, + { id: "ch1-characteristics", title: "Characteristics of an Entrepreneur", isPage: true }, + { id: "ch1-types", title: "Types of Entrepreneur", isPage: true }, + { id: "ch1-functions", title: "Functions of Entrepreneur", isPage: true }, + { id: "ch1-women", title: "Women Entrepreneurship in India", isPage: true }, + ], + }, + { + id: "ch2", + title: "Startup Ecosystem", + subTopics: [ + { id: "ch2-concept", title: "Concept of Startup", isPage: true }, + { id: "ch2-types", title: "Types of Startups", isPage: true }, + { id: "ch2-ecosystem", title: "Startup Ecosystems", isPage: true }, + ], + }, + { + id: "ch3", + title: "Ideation and Design Thinking", + subTopics: [ + { id: "ch3-concept", title: "Concept of Ideation", isPage: true }, + { id: "ch3-process", title: "Process of Ideation", isPage: true }, + { id: "ch3-incubation", title: "Idea Incubation", isPage: true }, + { id: "ch3-techniques", title: "Ideation Techniques", isPage: true }, + ], + }, + { + id: "ch4", + title: "Funding and Sustainability", + subTopics: [ + { id: "ch4-angel", title: "Angel Funding", isPage: true }, + { id: "ch4-venture", title: "Venture Funding", isPage: true }, + { id: "ch4-ownership", title: "Ownership of Startups", isPage: true }, + { id: "ch4-failure", title: "Causes of Startup Failure", isPage: true }, + { id: "ch4-funding", title: "Funding for Startups", isPage: true }, + ], + }, +]; diff --git a/app/sem7/eas/content/chapter0.tsx b/app/sem7/eas/content/chapter0.tsx new file mode 100644 index 0000000..0b489ef --- /dev/null +++ b/app/sem7/eas/content/chapter0.tsx @@ -0,0 +1,70 @@ +export const Ch0Content = () => ( +
+

+ Entrepreneurship and Startup introduces + the world of business creation and innovation. This course takes you from the + fundamental concepts of entrepreneurship through ideation, startup ecosystems, + and the financial strategies needed to sustain a growing venture. +

+ +
+ +
+

Syllabus Overview

+
+
+

Unit 1: Fundamentals of Entrepreneurship

+
    +
  • Concept of Entrepreneurship
  • +
  • Characteristics of an Entrepreneur
  • +
  • Types of Entrepreneur
  • +
  • Functions of Entrepreneur
  • +
  • Women Entrepreneurship in India
  • +
+
+ +
+

Unit 2: Startup Ecosystem

+
    +
  • Concept of Startup
  • +
  • Types of Startups
  • +
  • Startup Ecosystems
  • +
+
+ +
+

Unit 3: Ideation and Design Thinking

+
    +
  • Concept of Ideation
  • +
  • Process of Ideation
  • +
  • Idea Incubation
  • +
  • Ideation Techniques (SCAMPER, Brainstorming, Prototyping)
  • +
+
+ +
+

Unit 4: Funding and Sustainability

+
    +
  • Angel Funding
  • +
  • Venture Funding
  • +
  • Ownership of Startups
  • +
  • Causes of Startup Failure
  • +
  • Funding for Startups
  • +
+
+
+
+ +
+ +
+

Reference Books

+
+
    +
  • Entrepreneurial Development by S.S. Khanka
  • +
  • Entrepreneurial Development by Anil Kumar
  • +
+
+
+
+); diff --git a/app/sem7/eas/content/chapter1.tsx b/app/sem7/eas/content/chapter1.tsx new file mode 100644 index 0000000..b1ef4ff --- /dev/null +++ b/app/sem7/eas/content/chapter1.tsx @@ -0,0 +1,150 @@ +export const Ch1Content = () => ( +
+

+ Entrepreneurship is the backbone of economic growth and innovation. + This unit covers the core concepts, characteristics, and types of + entrepreneurship, including the growing role of women entrepreneurs in India. +

+ +
+ +
+

Concept of Entrepreneurship

+

+ Entrepreneurship is the process of designing, launching, and running a new + business, typically starting as a small business and scaling it into + something larger. It involves taking on financial risks in the hope of profit. +

+
+

Key Definition

+

+ An Entrepreneur is a person who + organises and manages a business undertaking, assuming the risk for the + sake of profit. — J.B. Say +

+
+

+ Entrepreneurship combines innovation, risk-taking, and management to create + value. It is not just about starting a business — it is about identifying + opportunities and mobilising resources to exploit them effectively. +

+
+ +
+ +
+

Characteristics of an Entrepreneur

+
+ {[ + { title: "Risk-Taking", desc: "Willingness to take calculated financial and personal risks." }, + { title: "Innovation", desc: "Ability to introduce new ideas, products, or methods." }, + { title: "Vision", desc: "Clear long-term goals and the ability to foresee opportunities." }, + { title: "Leadership", desc: "Skill to inspire and lead a team toward a common goal." }, + { title: "Decision Making", desc: "Capacity to make quick, effective decisions under pressure." }, + { title: "Persistence", desc: "Determination to continue despite failures and setbacks." }, + { title: "Adaptability", desc: "Flexibility to adjust plans according to changing conditions." }, + { title: "Self-Confidence", desc: "Belief in one's own abilities and judgement." }, + ].map((item) => ( +
+

{item.title}

+

{item.desc}

+
+ ))} +
+
+ +
+ +
+

Types of Entrepreneur

+
+ + + + + + + + + + {[ + { type: "Innovative", desc: "Introduces new products or methods.", ex: "Elon Musk, Steve Jobs" }, + { type: "Imitative", desc: "Copies successful existing ideas in new markets.", ex: "Local franchise owners" }, + { type: "Fabian", desc: "Very cautious, adopts change only when necessary.", ex: "Traditional family businesses" }, + { type: "Drone", desc: "Refuses to change even at the cost of losses.", ex: "Businesses stuck in old methods" }, + { type: "Social", desc: "Creates ventures to solve social problems.", ex: "NGOs, social enterprises" }, + { type: "Serial", desc: "Starts multiple businesses one after another.", ex: "Richard Branson" }, + ].map((row, i) => ( + + + + + + ))} + +
TypeDescriptionExample
{row.type}{row.desc}{row.ex}
+
+
+ +
+ +
+

Functions of Entrepreneur

+
    +
  • Idea Generation: Identifying viable business opportunities from the environment.
  • +
  • Resource Mobilisation: Arranging capital, labour, and raw materials.
  • +
  • Risk Bearing: Accepting uncertainty and financial risk of the venture.
  • +
  • Organisation Building: Setting up business structure, teams, and processes.
  • +
  • Innovation: Continuously improving products, services, and processes.
  • +
  • Decision Making: Making key strategic and operational decisions.
  • +
  • Marketing: Promoting and selling the product or service to customers.
  • +
+
+ +
+ +
+

Women Entrepreneurship in India

+

+ Women entrepreneurship refers to businesses owned, managed, and controlled + by women. In India, this sector has grown significantly with government + initiatives and changing social attitudes. +

+
+
+

Challenges Faced

+
    +
  • Limited access to finance and credit
  • +
  • Societal and family pressure
  • +
  • Lack of business education and training
  • +
  • Work-life balance difficulties
  • +
  • Limited networking opportunities
  • +
+
+
+

Government Support Schemes

+
    +
  • Mahila Udyam Nidhi Scheme
  • +
  • MUDRA Yojana (Women category)
  • +
  • Stree Shakti Package by SBI
  • +
  • Annapurna Scheme
  • +
  • Stand-Up India Scheme
  • +
+
+
+
+

Notable Indian Women Entrepreneurs

+

+ Kiran Mazumdar-Shaw (Biocon), Falguni Nayar (Nykaa), + Indra Nooyi (PepsiCo), Vandana Luthra (VLCC) +

+
+
+
+); diff --git a/app/sem7/eas/content/chapter2.tsx b/app/sem7/eas/content/chapter2.tsx new file mode 100644 index 0000000..7f7b53c --- /dev/null +++ b/app/sem7/eas/content/chapter2.tsx @@ -0,0 +1,118 @@ +export const Ch2Content = () => ( +
+

+ A startup is more than just a new business — it is a scalable venture built + to grow rapidly. This unit explores what startups are, how they are classified, + and the ecosystem that supports their growth. +

+ +
+ +
+

Concept of Startup

+

+ A startup is a young company founded + to develop a unique product or service, bring it to market, and scale it + rapidly. Unlike traditional businesses, startups aim for disruptive growth. +

+
+

India's Definition (DPIIT)

+

+ An entity is a startup if it is incorporated for less than 10 years, + has an annual turnover not exceeding ₹100 crore, and works towards + innovation, development or improvement of products, processes, or services. +

+
+
+ {[ + { title: "Innovation", desc: "Solves a problem in a new way." }, + { title: "Scalability", desc: "Designed to grow rapidly with limited resources." }, + { title: "Risk", desc: "High uncertainty; many startups fail in early stages." }, + ].map((item) => ( +
+

{item.title}

+

{item.desc}

+
+ ))} +
+
+ +
+ +
+

Types of Startups

+
+ + + + + + + + + + {[ + { type: "Small Business", desc: "Self-sustaining, local focus, not aiming for rapid scaling.", ex: "Local restaurant, shop" }, + { type: "Scalable", desc: "Designed to grow into large companies with external funding.", ex: "Google, Uber at inception" }, + { type: "Social", desc: "Focuses on solving social problems rather than maximising profit.", ex: "Khan Academy" }, + { type: "Buyable", desc: "Built to be acquired by a larger company.", ex: "Instagram (acquired by Facebook)" }, + { type: "Lifestyle", desc: "Built around founder's passion and lifestyle goals.", ex: "Travel blog, Etsy store" }, + { type: "Large Company", desc: "Innovates within an existing large corporation.", ex: "Google X, Amazon Lab126" }, + ].map((row, i) => ( + + + + + + ))} + +
TypeDescriptionExample
{row.type}{row.desc}{row.ex}
+
+
+ +
+ +
+

Startup Ecosystems

+

+ A startup ecosystem is a community + of startups, investors, mentors, institutions, and government bodies that + interact to support the creation and growth of new ventures. +

+
+ {[ + { + title: "Key Players", + items: ["Founders & Co-founders", "Angel Investors", "Venture Capitalists", "Incubators & Accelerators", "Mentors & Advisors", "Government Bodies"], + bg: "bg-[#f0ddb6]", + }, + { + title: "Support Infrastructure", + items: ["Co-working Spaces", "Research Institutions", "Universities", "Legal & Financial Services", "Media & PR", "Tech Communities"], + bg: "bg-[#f3e7c2]", + }, + ].map((col) => ( +
+

{col.title}

+
    + {col.items.map((item) =>
  • {item}
  • )} +
+
+ ))} +
+
+

Top Indian Startup Hubs

+

+ Bengaluru, Mumbai, Delhi NCR, Hyderabad, Pune — collectively called + India's startup corridors. India is the world's 3rd largest startup ecosystem. +

+
+
+
+); diff --git a/app/sem7/eas/content/chapter3.tsx b/app/sem7/eas/content/chapter3.tsx new file mode 100644 index 0000000..8b905dd --- /dev/null +++ b/app/sem7/eas/content/chapter3.tsx @@ -0,0 +1,158 @@ +export const Ch3Content = () => ( +
+

+ Great startups begin with great ideas. This unit covers the science and art + of generating, refining, and incubating ideas — along with proven techniques + like SCAMPER, Brainstorming, and Prototyping. +

+ +
+ +
+

Concept of Ideation

+

+ Ideation is the creative process of + generating, developing, and communicating new ideas. In entrepreneurship, + it is the first and most critical step in identifying a business opportunity. +

+
+

What makes a good idea?

+
    +
  • Solves a real problem people face
  • +
  • Has a target market willing to pay
  • +
  • Is feasible to execute with available resources
  • +
  • Is differentiated from existing solutions
  • +
+
+
+ +
+ +
+

Process of Ideation

+
+ {[ + { step: "1", title: "Problem Identification", desc: "Observe pain points, inefficiencies, or unmet needs in everyday life." }, + { step: "2", title: "Research & Inspiration", desc: "Study existing solutions, competitors, trends, and user behaviour." }, + { step: "3", title: "Idea Generation", desc: "Use creative techniques to generate a wide range of possible solutions." }, + { step: "4", title: "Idea Screening", desc: "Filter ideas based on feasibility, market potential, and resources." }, + { step: "5", title: "Concept Development", desc: "Develop the best idea into a concrete concept with a value proposition." }, + { step: "6", title: "Validation", desc: "Test the concept with real potential users before building the full product." }, + ].map((item) => ( +
+
+ {item.step} +
+
+

{item.title}

+

{item.desc}

+
+
+ ))} +
+
+ +
+ +
+

Idea Incubation

+

+ Idea Incubation is the phase where + an idea is nurtured, refined, and developed into a viable business concept. + Business incubators provide support infrastructure for early-stage startups. +

+
+
+

What Incubators Provide

+
    +
  • Office space and infrastructure
  • +
  • Mentorship and expert guidance
  • +
  • Access to funding networks
  • +
  • Legal, financial, and HR support
  • +
  • Networking with other startups
  • +
+
+
+

Famous Indian Incubators

+
    +
  • NSRCEL — IIM Bangalore
  • +
  • CIIE.CO — IIM Ahmedabad
  • +
  • T-Hub — Hyderabad
  • +
  • Startup India Seed Fund
  • +
  • SINE — IIT Bombay
  • +
+
+
+
+ +
+ +
+

Ideation Techniques

+ +

SCAMPER

+

+ SCAMPER is a structured creative thinking tool where each letter prompts + a different way to think about improving or reinventing a product or idea. +

+
+ {[ + { letter: "S", word: "Substitute", desc: "Replace a component with something else. (e.g. plastic → biodegradable material)" }, + { letter: "C", word: "Combine", desc: "Merge two ideas or products together. (e.g. phone + camera)" }, + { letter: "A", word: "Adapt", desc: "Adjust the idea to work in a new context. (e.g. Uber model for healthcare)" }, + { letter: "M", word: "Modify / Magnify", desc: "Change the size, shape, or attributes. (e.g. supersizing fast food)" }, + { letter: "P", word: "Put to other use", desc: "Use the product for a different purpose. (e.g. post-it notes → sticky labels)" }, + { letter: "E", word: "Eliminate", desc: "Remove a feature to simplify. (e.g. AirBnB removes hotel staff)" }, + { letter: "R", word: "Reverse / Rearrange", desc: "Flip or reorder the process. (e.g. drive-through restaurants)" }, + ].map((item) => ( +
+
+ {item.letter} +
+
+

{item.word}

+

{item.desc}

+
+
+ ))} +
+ +

Brainstorming

+

+ Brainstorming is a group creativity technique where participants freely + share ideas without judgement to generate a large number of ideas quickly. +

+
+

Rules of Brainstorming

+
    +
  • No criticism or judgement during idea generation
  • +
  • Quantity over quality — more ideas is better
  • +
  • Wild and unusual ideas are welcome
  • +
  • Build on others' ideas (piggyback)
  • +
+
+ +

Prototyping

+

+ A prototype is an early sample or + model built to test a concept before full development. It helps validate + assumptions and gather user feedback cheaply. +

+
+ {[ + { title: "Paper Prototype", desc: "Sketches or paper models for quick concept testing." }, + { title: "Digital Wireframe", desc: "Low-fidelity digital mockup of an app or website." }, + { title: "MVP", desc: "Minimum Viable Product — the simplest working version launched to real users." }, + ].map((item) => ( +
+

{item.title}

+

{item.desc}

+
+ ))} +
+
+
+); diff --git a/app/sem7/eas/content/chapter4.tsx b/app/sem7/eas/content/chapter4.tsx new file mode 100644 index 0000000..21afee1 --- /dev/null +++ b/app/sem7/eas/content/chapter4.tsx @@ -0,0 +1,204 @@ +export const Ch4Content = () => ( +
+

+ Every startup needs fuel to grow. This unit covers how startups raise money, + how ownership is structured, what causes most startups to fail, and the + different funding options available at each stage of growth. +

+ +
+ +
+

Angel Funding

+

+ Angel investors are wealthy + individuals who provide capital to startups in their earliest stages in + exchange for equity ownership or convertible debt. +

+
+
+

Characteristics

+
    +
  • Invest their own personal funds
  • +
  • Typical investment: ₹25 lakh – ₹5 crore
  • +
  • Invest at idea or early revenue stage
  • +
  • Often provide mentorship along with money
  • +
  • Take 10–30% equity stake
  • +
+
+
+

Notable Indian Angel Networks

+
    +
  • Indian Angel Network (IAN)
  • +
  • Mumbai Angels
  • +
  • Chennai Angels
  • +
  • Lead Angels
  • +
  • Angel List India
  • +
+
+
+
+ +
+ +
+

Venture Funding

+

+ Venture Capital (VC) is a form of + private equity financing provided by firms or funds to startups with high + growth potential in exchange for equity. +

+
+ + + + + + + + + + {[ + { stage: "Pre-Seed", round: "Bootstrapping / Friends", purpose: "Build prototype, validate idea" }, + { stage: "Seed", round: "Angel / Seed VC", purpose: "Product development, initial hiring" }, + { stage: "Series A", round: "Venture Capital", purpose: "Scale product-market fit" }, + { stage: "Series B", round: "Venture Capital", purpose: "Expand market, grow team" }, + { stage: "Series C+", round: "PE / Late-stage VC", purpose: "Dominate market, prepare for IPO" }, + { stage: "IPO", round: "Public Market", purpose: "List on stock exchange" }, + ].map((row, i) => ( + + + + + + ))} + +
StageRoundPurpose
{row.stage}{row.round}{row.purpose}
+
+
+

Top Indian VC Firms

+

+ Sequoia Capital India (Peak XV), Accel, Blume Ventures, Nexus Venture + Partners, Kalaari Capital, Matrix Partners India +

+
+
+ +
+ +
+

Ownership of Startups

+

+ Startup ownership is divided into equity shares. + As a startup raises more funding, founders dilute their ownership percentage + but gain capital to grow. +

+
+ {[ + { title: "Founders", desc: "Original creators; hold majority equity in early stages." }, + { title: "Co-founders", desc: "Partners who join at inception; equity split by agreement." }, + { title: "Employees (ESOP)", desc: "Stock options given to employees as incentive." }, + { title: "Investors", desc: "Receive equity proportional to their investment amount." }, + { title: "Advisors", desc: "Receive small equity (0.1–1%) for strategic guidance." }, + { title: "Vesting", desc: "Equity earned over time (e.g. 4-year vest, 1-year cliff)." }, + ].map((item) => ( +
+

{item.title}

+

{item.desc}

+
+ ))} +
+
+ +
+ +
+

Causes of Startup Failure

+
+ {[ + { rank: "1", cause: "No Market Need", desc: "Building a product nobody wants. 42% of startups fail for this reason." }, + { rank: "2", cause: "Running Out of Cash", desc: "Poor financial planning leads to inability to pay salaries and expenses." }, + { rank: "3", cause: "Wrong Team", desc: "Lack of complementary skills or conflict among co-founders." }, + { rank: "4", cause: "Outcompeted", desc: "Larger players copy the idea with more resources." }, + { rank: "5", cause: "Pricing Issues", desc: "Price too high loses customers; too low makes the business unsustainable." }, + { rank: "6", cause: "Poor Marketing", desc: "Great product with no visibility or customer acquisition strategy." }, + { rank: "7", cause: "Scaling Too Fast", desc: "Expanding before achieving product-market fit." }, + ].map((item) => ( +
+
+ {item.rank} +
+
+

{item.cause}

+

{item.desc}

+
+
+ ))} +
+
+ +
+ +
+

Funding for Startups — All Options

+
+ {[ + { + title: "Bootstrapping", + desc: "Using personal savings or revenue to fund the startup. Full control, no dilution.", + bg: "bg-[#f0ddb6]", + }, + { + title: "Friends & Family", + desc: "Early informal funding from personal network. Low interest, high trust required.", + bg: "bg-[#f3e7c2]", + }, + { + title: "Angel Investment", + desc: "HNI individuals invest early-stage capital in exchange for equity.", + bg: "bg-[#f0ddb6]", + }, + { + title: "Venture Capital", + desc: "Institutional funds invest large amounts for significant equity stakes.", + bg: "bg-[#f3e7c2]", + }, + { + title: "Crowdfunding", + desc: "Raise small amounts from many people via platforms like Kickstarter, Milaap.", + bg: "bg-[#f0ddb6]", + }, + { + title: "Government Grants", + desc: "Non-dilutive funding via schemes like Startup India, BIRAC, MSME grants.", + bg: "bg-[#f3e7c2]", + }, + { + title: "Bank Loans", + desc: "Traditional debt financing; requires collateral but no equity dilution.", + bg: "bg-[#f0ddb6]", + }, + { + title: "Incubator / Accelerator", + desc: "Provide seed funding + mentorship + network in exchange for small equity.", + bg: "bg-[#f3e7c2]", + }, + ].map((item) => ( +
+

{item.title}

+

{item.desc}

+
+ ))} +
+
+
+); diff --git a/app/sem7/eas/layout.tsx b/app/sem7/eas/layout.tsx new file mode 100644 index 0000000..2e58846 --- /dev/null +++ b/app/sem7/eas/layout.tsx @@ -0,0 +1,16 @@ +import Sidebar from "./components/Sidebar"; + +export default function EasLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( +
+ +
+ {children} +
+
+ ); +}