Startup plan is a SME/Bootstrapping platform that Provides customizable and user-friendly business plan templates, customer survey templates, competitive analysis and SWOT analysis templates that cater to the specific needs of startups
The product will help Startups:
- Access business plan templates.
- Access customer survey samples.
- Register businesses with appropriate institutions.
- Procure affordable legal and financial consultation. // "start": "react-scripts --openssl-legacy-provider start",
- Shows the header and an overview of what to expect.
- Authentication whenever the user logs into the system.
- A verification email is sent to user whenever she registers for the first time.
- Landing Page.
- Signup/Login.
- Our services.
- Customer chat feature.
- Templates.
- Pricing and Subscription plan.
- Support and resources
- Testimonials and Reviews
- Social media links
This project was bootstrapped with Create React App.
Kindly click the app link to view https://ada-software-engineering-program.github.io/startup-plan/
- Create the folder in which your project would be located in.
- Move into the folder and insall react.
- To install react, run
npx create-react-app <app-name>
.
In the project directory, you can run the command below after setting up:
Open http://localhost:3000 to view it in your browser.
- Start by creating a new React project with Create React App.
- Install tailwindcss via npm by running
npm install -D tailwindcss
. - Setup the tailwind config file by running the command
npx tailwindcss init
. - Configure your template paths.
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
- Add the @tailwind directives for each of Tailwind’s layers to your ./src/index.css file. :
@tailwind base;
@tailwind components;
@tailwind utilities;
-Run your build process with npm run start
and start using tailwindcss.