Create a lean business canvas form Inspired by: Ash Maurya
Acceptance criteria:
- Must contain the following fields
- Customer Segments (with subset "Early Adopters")
- List your target customers and users
- List the characteristics of your ideal customers
- Problem (with subset "Existing alternatives")
- List your customer's top 3 problems
- List how these problems are solved today
- Revenue Streams
- List your sources of revenue
- Solution
- Unique Value Proposition (with subset "High-Level Concept")
- Single, clear, compelling message that turns an unaware visitor into an interested prospect
- List your X for Y analogy (e.g. Youtube = FLickr for videos)
- Channels
- List your path to customers
- Key Metrics
- List the key numbers that tell you how your business is doing
- Cost Structure
- List your fixed and variable costs
- Unfair Advantage
- Something that can not be easily copied or bought
- Customer Segments (with subset "Early Adopters")
Strech goals:
- The form can be exported to PDF
- Add link to YouTube videos explaining each
First, run the development server:
npm run dev
# or
yarn dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying pages/index.js
. The page auto-updates as you edit the file.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.
#Typescript
yarn add --dev typescript @types/react @types/node
#Jest
yarn add --dev jest @types/jest @testing-library/react @testing-library/jest-dom ts-jest jest-transform-css
tsconfig.jest.json
{
"compilerOptions": {
"jsx": "react",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"target": "es5"
}
}
jest.config.js
module.exports = {
preset: 'ts-jest',
testPathIgnorePatterns: ["<rootDir>/.next/", "<rootDir>/node_modules/"],
setupFilesAfterEnv: ["<rootDir>/setupTests.ts"],
transform: {
"^.+\\.tsx?$": "ts-jest"
},
testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
moduleFileExtensions: [
"ts",
"tsx",
"js",
"jsx",
"json",
"node",
"module.css"
],
moduleNameMapper: {
"\\.(css|less|scss|sass)$": "jest-transform-css"
},
globals: {
'ts-jest': {
tsconfig: '<rootDir>/tsconfig.jest.json',
},
},
};
Installation guide - here
Installation guide - here