├── .eslintrc.cjs
├── .github
├── FUNDING.yml
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ └── feature_request.md
├── dependabot.yml
└── images
│ ├── img1.png
│ ├── img2.png
│ ├── img3.png
│ ├── img4.png
│ ├── img_main.png
│ └── stats.svg
├── .gitignore
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── SECURITY.md
├── index.html
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
├── apple-icon.png
├── favicon.ico
├── favicon1.png
└── favicon2.png
├── src
├── App.jsx
├── assets
│ ├── 4-small.png
│ ├── background.jpg
│ ├── benefits
│ │ ├── card-1.svg
│ │ ├── card-2.svg
│ │ ├── card-3.svg
│ │ ├── card-4.svg
│ │ ├── card-5.svg
│ │ ├── card-6.svg
│ │ ├── icon-1.svg
│ │ ├── icon-2.svg
│ │ ├── icon-3.svg
│ │ ├── icon-4.svg
│ │ └── image-2.png
│ ├── brainwave-symbol-white.svg
│ ├── brainwave-symbol.svg
│ ├── brainwave.svg
│ ├── check-02.svg
│ ├── check.svg
│ ├── chrome-cast.svg
│ ├── collaboration
│ │ ├── curve-1.svg
│ │ ├── curve-2.svg
│ │ ├── discord.png
│ │ ├── figma.png
│ │ ├── framer.png
│ │ ├── notion.png
│ │ ├── photoshop.png
│ │ ├── protopie.png
│ │ ├── raindrop.png
│ │ └── slack.png
│ ├── disc-02.svg
│ ├── file-02.svg
│ ├── gradient.png
│ ├── grid.png
│ ├── hero
│ │ ├── curve.png
│ │ ├── hero-background.jpg
│ │ └── robot.jpg
│ ├── home-smile.svg
│ ├── index.js
│ ├── loading-01.svg
│ ├── loading.png
│ ├── notification
│ │ ├── image-1.png
│ │ ├── image-2.png
│ │ ├── image-3.png
│ │ └── image-4.png
│ ├── pause.svg
│ ├── play.svg
│ ├── plus-square.svg
│ ├── pricing
│ │ ├── lines.svg
│ │ └── stars.svg
│ ├── react.svg
│ ├── recording-01.svg
│ ├── recording-03.svg
│ ├── roadmap
│ │ ├── coins.png
│ │ ├── done.svg
│ │ ├── hero.png
│ │ ├── image-1.png
│ │ ├── image-2.png
│ │ ├── image-3.png
│ │ ├── image-4.png
│ │ └── undone.svg
│ ├── search-md.svg
│ ├── services
│ │ ├── service-1.png
│ │ ├── service-2.png
│ │ └── service-3.png
│ ├── sliders-04.svg
│ ├── socials
│ │ ├── discord.svg
│ │ ├── facebook.svg
│ │ ├── instagram.svg
│ │ ├── telegram.svg
│ │ └── twitter.svg
│ ├── svg
│ │ ├── Arrow.jsx
│ │ ├── Brackets.jsx
│ │ ├── ButtonGradient.jsx
│ │ ├── ButtonSvg.jsx
│ │ ├── ChatBubbleWing.jsx
│ │ ├── ClipPath.jsx
│ │ ├── MenuSvg.jsx
│ │ ├── PlusSvg.jsx
│ │ └── SectionSvg.jsx
│ └── yourlogo.svg
├── components
│ ├── Benefits.jsx
│ ├── Button.jsx
│ ├── Collaboration.jsx
│ ├── CompanyLogos.jsx
│ ├── Footer.jsx
│ ├── Generating.jsx
│ ├── Header.jsx
│ ├── Heading.jsx
│ ├── Hero.jsx
│ ├── Notification.jsx
│ ├── Pricing.jsx
│ ├── PricingList.jsx
│ ├── Roadmap.jsx
│ ├── Section.jsx
│ ├── Services.jsx
│ ├── Tagline.jsx
│ └── design
│ │ ├── Benefits.jsx
│ │ ├── Collaboration.jsx
│ │ ├── Header.jsx
│ │ ├── Hero.jsx
│ │ ├── Pricing.jsx
│ │ ├── Roadmap.jsx
│ │ └── Services.jsx
├── config
│ └── index.js
├── constants
│ └── index.js
├── index.css
└── main.jsx
├── tailwind.config.js
└── vite.config.js
/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | env: { browser: true, es2020: true },
4 | extends: [
5 | "eslint:recommended",
6 | "plugin:react/recommended",
7 | "plugin:react/jsx-runtime",
8 | "plugin:react-hooks/recommended",
9 | ],
10 | ignorePatterns: ["dist", ".eslintrc.cjs"],
11 | parserOptions: { ecmaVersion: "latest", sourceType: "module" },
12 | settings: { react: { version: "18.2" } },
13 | plugins: ["react-refresh"],
14 | rules: {
15 | "react/jsx-no-target-blank": "off",
16 | "react-refresh/only-export-components": [
17 | "warn",
18 | { allowConstantExport: true },
19 | ],
20 | "react/prop-types": "off",
21 | },
22 | };
23 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: [sanidhyy]
4 | patreon: sanidhy
5 | custom: https://www.buymeacoffee.com/sanidhy
6 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the bug**
11 | A clear and concise description of what the bug is.
12 |
13 | **To Reproduce**
14 | Steps to reproduce the behavior:
15 | 1. Go to '...'
16 | 2. Click on '....'
17 | 3. Scroll down to '....'
18 | 4. See error
19 |
20 | **Expected behavior**
21 | A clear and concise description of what you expected to happen.
22 |
23 | **Screenshots**
24 | If applicable, add screenshots to help explain your problem.
25 |
26 | **Desktop (please complete the following information):**
27 | - OS: [e.g. iOS]
28 | - Browser [e.g. chrome, safari]
29 | - Version [e.g. 22]
30 |
31 | **Smartphone (please complete the following information):**
32 | - Device: [e.g. iPhone6]
33 | - OS: [e.g. iOS8.1]
34 | - Browser [e.g. stock browser, safari]
35 | - Version [e.g. 22]
36 |
37 | **Additional context**
38 | Add any other context about the problem here.
39 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Is your feature request related to a problem? Please describe.**
11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12 |
13 | **Describe the solution you'd like**
14 | A clear and concise description of what you want to happen.
15 |
16 | **Describe alternatives you've considered**
17 | A clear and concise description of any alternative solutions or features you've considered.
18 |
19 | **Additional context**
20 | Add any other context or screenshots about the feature request here.
21 |
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | # To get started with Dependabot version updates, you'll need to specify which
2 | # package ecosystems to update and where the package manifests are located.
3 | # Please see the documentation for all configuration options:
4 | # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5 |
6 | version: 2
7 | updates:
8 | - package-ecosystem: "npm"
9 | directory: "/"
10 | schedule:
11 | interval: "weekly"
12 |
--------------------------------------------------------------------------------
/.github/images/img1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sanidhyy/brainwave/a0056ad22021a45c5a2fe325bbca2fec4d043324/.github/images/img1.png
--------------------------------------------------------------------------------
/.github/images/img2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sanidhyy/brainwave/a0056ad22021a45c5a2fe325bbca2fec4d043324/.github/images/img2.png
--------------------------------------------------------------------------------
/.github/images/img3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sanidhyy/brainwave/a0056ad22021a45c5a2fe325bbca2fec4d043324/.github/images/img3.png
--------------------------------------------------------------------------------
/.github/images/img4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sanidhyy/brainwave/a0056ad22021a45c5a2fe325bbca2fec4d043324/.github/images/img4.png
--------------------------------------------------------------------------------
/.github/images/img_main.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sanidhyy/brainwave/a0056ad22021a45c5a2fe325bbca2fec4d043324/.github/images/img_main.png
--------------------------------------------------------------------------------
/.github/images/stats.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Code of Conduct - Brainwave
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to make participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, sex characteristics, gender identity and expression,
9 | level of experience, education, socio-economic status, nationality, personal
10 | appearance, race, religion, or sexual identity and orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to a positive environment for our
15 | community include:
16 |
17 | * Demonstrating empathy and kindness toward other people
18 | * Being respectful of differing opinions, viewpoints, and experiences
19 | * Giving and gracefully accepting constructive feedback
20 | * Accepting responsibility and apologizing to those affected by our mistakes,
21 | and learning from the experience
22 | * Focusing on what is best not just for us as individuals, but for the
23 | overall community
24 |
25 | Examples of unacceptable behavior include:
26 |
27 | * The use of sexualized language or imagery, and sexual attention or
28 | advances
29 | * Trolling, insulting or derogatory comments, and personal or political attacks
30 | * Public or private harassment
31 | * Publishing others' private information, such as a physical or email
32 | address, without their explicit permission
33 | * Other conduct which could reasonably be considered inappropriate in a
34 | professional setting
35 |
36 | ## Our Responsibilities
37 |
38 | Project maintainers are responsible for clarifying and enforcing our standards of
39 | acceptable behavior and will take appropriate and fair corrective action in
40 | response to any behavior that they deem inappropriate,
41 | threatening, offensive, or harmful.
42 |
43 | Project maintainers have the right and responsibility to remove, edit, or reject
44 | comments, commits, code, wiki edits, issues, and other contributions that are
45 | not aligned to this Code of Conduct, and will
46 | communicate reasons for moderation decisions when appropriate.
47 |
48 | ## Scope
49 |
50 | This Code of Conduct applies within all community spaces, and also applies when
51 | an individual is officially representing the community in public spaces.
52 | Examples of representing our community include using an official e-mail address,
53 | posting via an official social media account, or acting as an appointed
54 | representative at an online or offline event.
55 |
56 | ## Enforcement
57 |
58 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
59 | reported to the community leaders responsible for enforcement at .
60 | All complaints will be reviewed and investigated promptly and fairly.
61 |
62 | All community leaders are obligated to respect the privacy and security of the
63 | reporter of any incident.
64 |
65 | ## Enforcement Guidelines
66 |
67 | Community leaders will follow these Community Impact Guidelines in determining
68 | the consequences for any action they deem in violation of this Code of Conduct:
69 |
70 | ### 1. Correction
71 |
72 | **Community Impact**: Use of inappropriate language or other behavior deemed
73 | unprofessional or unwelcome in the community.
74 |
75 | **Consequence**: A private, written warning from community leaders, providing
76 | clarity around the nature of the violation and an explanation of why the
77 | behavior was inappropriate. A public apology may be requested.
78 |
79 | ### 2. Warning
80 |
81 | **Community Impact**: A violation through a single incident or series
82 | of actions.
83 |
84 | **Consequence**: A warning with consequences for continued behavior. No
85 | interaction with the people involved, including unsolicited interaction with
86 | those enforcing the Code of Conduct, for a specified period of time. This
87 | includes avoiding interactions in community spaces as well as external channels
88 | like social media. Violating these terms may lead to a temporary or
89 | permanent ban.
90 |
91 | ### 3. Temporary Ban
92 |
93 | **Community Impact**: A serious violation of community standards, including
94 | sustained inappropriate behavior.
95 |
96 | **Consequence**: A temporary ban from any sort of interaction or public
97 | communication with the community for a specified period of time. No public or
98 | private interaction with the people involved, including unsolicited interaction
99 | with those enforcing the Code of Conduct, is allowed during this period.
100 | Violating these terms may lead to a permanent ban.
101 |
102 | ### 4. Permanent Ban
103 |
104 | **Community Impact**: Demonstrating a pattern of violation of community
105 | standards, including sustained inappropriate behavior, harassment of an
106 | individual, or aggression toward or disparagement of classes of individuals.
107 |
108 | **Consequence**: A permanent ban from any sort of public interaction within
109 | the community.
110 |
111 | ## Attribution
112 |
113 | This Code of Conduct is adapted from the [Contributor Covenant](https://contributor-covenant.org/), version
114 | [1.4](https://www.contributor-covenant.org/version/1/4/code-of-conduct/code_of_conduct.md) and
115 | [2.0](https://www.contributor-covenant.org/version/2/0/code_of_conduct/code_of_conduct.md),
116 | and was generated by [contributing-gen](https://github.com/bttger/contributing-gen).
117 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 |
2 | # Contributing to Brainwave
3 |
4 | First off, thanks for taking the time to contribute! ❤️
5 |
6 | All types of contributions are encouraged and valued. See the [Table of Contents](#table-of-contents) for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉
7 |
8 | > And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about:
9 | > - Star the project
10 | > - Tweet about it
11 | > - Refer this project in your project's readme
12 | > - Mention the project at local meetups and tell your friends/colleagues
13 |
14 |
15 | ## Table of Contents
16 |
17 | - [Code of Conduct](#code-of-conduct)
18 | - [I Have a Question](#i-have-a-question)
19 | - [I Want To Contribute](#i-want-to-contribute)
20 | - [Reporting Bugs](#reporting-bugs)
21 | - [Suggesting Enhancements](#suggesting-enhancements)
22 | - [Your First Code Contribution](#your-first-code-contribution)
23 | - [Improving The Documentation](#improving-the-documentation)
24 | - [Styleguides](#styleguides)
25 | - [Commit Messages](#commit-messages)
26 | - [Join The Project Team](#join-the-project-team)
27 |
28 |
29 | ## Code of Conduct
30 |
31 | This project and everyone participating in it is governed by the
32 | [Brainwave Code of Conduct](https://github.com/sanidhyy/brainwaveblob/master/CODE_OF_CONDUCT.md).
33 | By participating, you are expected to uphold this code. Please report unacceptable behavior
34 | to .
35 |
36 |
37 | ## I Have a Question
38 |
39 | > If you want to ask a question, we assume that you have read the available [Documentation](https://github.com/sanidhyy/brainwave/wiki).
40 |
41 | Before you ask a question, it is best to search for existing [Issues](https://github.com/sanidhyy/brainwave/issues) that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first.
42 |
43 | If you then still feel the need to ask a question and need clarification, we recommend the following:
44 |
45 | - Open an [Issue](https://github.com/sanidhyy/brainwave/issues/new).
46 | - Provide as much context as you can about what you're running into.
47 | - Provide project and platform versions (nodejs, npm, etc), depending on what seems relevant.
48 |
49 | We will then take care of the issue as soon as possible.
50 |
51 | ## I Want To Contribute
52 |
53 | > ### Legal Notice
54 | > When contributing to this project, you must agree that you have authored 100% of the content, that you have the necessary rights to the content and that the content you contribute may be provided under the project license.
55 |
56 | ### Reporting Bugs
57 |
58 | #### Before Submitting a Bug Report
59 |
60 | A good bug report shouldn't leave others needing to chase you up for more information. Therefore, we ask you to investigate carefully, collect information and describe the issue in detail in your report. Please complete the following steps in advance to help us fix any potential bug as fast as possible.
61 |
62 | - Make sure that you are using the latest version.
63 | - Determine if your bug is really a bug and not an error on your side e.g. using incompatible environment components/versions (Make sure that you have read the [documentation](https://github.com/sanidhyy/brainwave/wiki). If you are looking for support, you might want to check [this section](#i-have-a-question)).
64 | - To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/sanidhyy/brainwaveissues?q=label%3Abug).
65 | - Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue.
66 | - Collect information about the bug:
67 | - Stack trace (Traceback)
68 | - OS, Platform and Version (Windows, Linux, macOS, x86, ARM)
69 | - Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant.
70 | - Possibly your input and the output
71 | - Can you reliably reproduce the issue? And can you also reproduce it with older versions?
72 |
73 | #### How Do I Submit a Good Bug Report?
74 |
75 | > You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead sensitive bugs must be sent by email to .
76 |
77 | We use GitHub issues to track bugs and errors. If you run into an issue with the project:
78 |
79 | - Open an [Issue](https://github.com/sanidhyy/brainwave/issues/new). (Since we can't be sure at this point whether it is a bug or not, we ask you not to talk about a bug yet and not to label the issue.)
80 | - Explain the behavior you would expect and the actual behavior.
81 | - Please provide as much context as possible and describe the *reproduction steps* that someone else can follow to recreate the issue on their own. This usually includes your code. For good bug reports you should isolate the problem and create a reduced test case.
82 | - Provide the information you collected in the previous section.
83 |
84 | Once it's filed:
85 |
86 | - The project team will label the issue accordingly.
87 | - A team member will try to reproduce the issue with your provided steps. If there are no reproduction steps or no obvious way to reproduce the issue, the team will ask you for those steps and mark the issue as `needs-repro`. Bugs with the `needs-repro` tag will not be addressed until they are reproduced.
88 | - If the team is able to reproduce the issue, it will be marked `needs-fix`, as well as possibly other tags (such as `critical`), and the issue will be left to be [implemented by someone](#your-first-code-contribution).
89 |
90 | ### Suggesting Enhancements
91 |
92 | This section guides you through submitting an enhancement suggestion for Brainwave, **including completely new features and minor improvements to existing functionality**. Following these guidelines will help maintainers and the community to understand your suggestion and find related suggestions.
93 |
94 |
95 | #### Before Submitting an Enhancement
96 |
97 | - Make sure that you are using the latest version.
98 | - Read the [documentation](https://github.com/sanidhyy/brainwave/wiki) carefully and find out if the functionality is already covered, maybe by an individual configuration.
99 | - Perform a [search](https://github.com/sanidhyy/brainwave/issues) to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
100 | - Find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you're just targeting a minority of users, consider writing an add-on/plugin library.
101 |
102 |
103 | #### How Do I Submit a Good Enhancement Suggestion?
104 |
105 | Enhancement suggestions are tracked as [GitHub issues](https://github.com/sanidhyy/brainwave/issues).
106 |
107 | - Use a **clear and descriptive title** for the issue to identify the suggestion.
108 | - Provide a **step-by-step description of the suggested enhancement** in as many details as possible.
109 | - **Describe the current behavior** and **explain which behavior you expected to see instead** and why. At this point you can also tell which alternatives do not work for you.
110 | - You may want to **include screenshots and animated GIFs** which help you demonstrate the steps or point out the part which the suggestion is related to. You can use [this tool](https://www.cockos.com/licecap/) to record GIFs on macOS and Windows, and [this tool](https://github.com/colinkeenan/silentcast) or [this tool](https://github.com/GNOME/byzanz) on Linux.
111 | - **Explain why this enhancement would be useful** to most Brainwave users. You may also want to point out the other projects that solved it better and which could serve as inspiration.
112 |
113 | ## Attribution
114 | This guide is based on the **contributing-gen**. [Make your own](https://github.com/bttger/contributing-gen)!
115 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 Sanidhya Kumar Verma
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | # Brainwave - Modern Animated SaaS Generative AI Landing Page
4 |
5 | 
6 |
7 | [](https://github.com/sanidhyy "Ask Me Anything!")
8 | [](https://github.com/sanidhyy/brainwave/blob/main/LICENSE "GitHub license")
9 | [](https://github.com/sanidhyy/brainwave/commits/main "Maintenance")
10 | [](https://github.com/sanidhyy/brainwave/branches "GitHub branches")
11 | [](https://github.com/sanidhyy/brainwave/commits "Github commits")
12 | [](https://github.com/sanidhyy/brainwave/issues "GitHub issues")
13 | [](https://github.com/sanidhyy/brainwave/pulls "GitHub pull requests")
14 | [](https://app-brainwave.netlify.app/ "Netlify Status")
15 |
16 |
17 |
18 |
19 |
20 |
21 | # :notebook_with_decorative_cover: Table of Contents
22 |
23 |
24 |
25 | - [Folder Structure](#bangbang-folder-structure)
26 | - [Getting Started](#toolbox-getting-started)
27 | - [Screenshots](#camera-screenshots)
28 | - [Tech Stack](#gear-tech-stack)
29 | - [Stats](#wrench-stats)
30 | - [Contribute](#raised_hands-contribute)
31 | - [Acknowledgements](#gem-acknowledgements)
32 | - [Buy Me a Coffee](#coffee-buy-me-a-coffee)
33 | - [Follow Me](#rocket-follow-me)
34 | - [Learn More](#books-learn-more)
35 | - [Deploy on Netlify](#page_with_curl-deploy-on-netlify)
36 | - [Give A Star](#star-give-a-star)
37 | - [Star History](#star2-star-history)
38 | - [Give A Star](#star-give-a-star)
39 |
40 |
41 |
42 | ## :bangbang: Folder Structure
43 |
44 | Here is the folder structure of this app.
45 |
46 | ```bash
47 | brainwave/
48 | |- public/
49 | |-- apple-icon.png
50 | |-- favicon.ico
51 | |-- favicon1.png
52 | |-- favicon2.png
53 | |- src/
54 | |-- assets/
55 | |--- benefits/
56 | |--- collaboration/
57 | |--- hero/
58 | |--- notification/
59 | |--- pricing/
60 | |--- roadmap/
61 | |--- services/
62 | |--- socials/
63 | |--- svg/
64 | |--- index.js
65 | |-- components/
66 | |--- design/
67 | |--- Benefits.jsx
68 | |--- Button.jsx
69 | |--- Collaboration.jsx
70 | |--- CompanyLogos.jsx
71 | |--- Footer.jsx
72 | |--- Generating.jsx
73 | |--- Header.jsx
74 | |--- Heading.jsx
75 | |--- Hero.jsx
76 | |--- Notification.jsx
77 | |--- Pricing.jsx
78 | |--- PricingList.jsx
79 | |--- Roadmap.jsx
80 | |--- Section.jsx
81 | |--- Services.jsx
82 | |--- Tagline.jsx
83 | |-- config/
84 | |--- index.js
85 | |-- constants/
86 | |--- index.js
87 | |-- App.jsx
88 | |-- index.css
89 | |-- main.jsx
90 | |- .eslintrc.cjs
91 | |- .gitignore
92 | |- index.html
93 | |- package-lock.json
94 | |- package.json
95 | |- postcss.config.js
96 | |- tailwind.config.js
97 | |- vite.config.js
98 | ```
99 |
100 |
101 |
102 | ## :toolbox: Getting Started
103 |
104 | 1. Make sure **Git** and **NodeJS** is installed.
105 | 2. Clone this repository to your local computer.
106 | 3. Install project dependencies using `npm install --legacy-peer-deps` or `yarn install --legacy-peer-deps`
107 | 4. Now app is fully configured 👍 and you can start using this app using either one of `npm run dev` or `yarn dev`.
108 |
109 | **NOTE:** Please make sure to keep your API keys and configuration values secure and do not expose them publicly.
110 |
111 | ## :camera: Screenshots
112 |
113 | 
114 |
115 | 
116 |
117 | 
118 |
119 | 
120 |
121 | ## :gear: Tech Stack
122 |
123 | [](https://react.dev/ "React JS") [](https://vitejs.dev/ "Vite JS") [](https://developer.mozilla.org/en-US/docs/Web/JavaScript "Javascript") [](https://tailwindcss.com/ "Tailwind CSS") [](https://netlify.app/ "Netlify")
124 |
125 | ## :wrench: Stats
126 |
127 | [](https://pagespeed.web.dev/analysis?url=https://app-brainwave.netlify.app/ "Stats for Brainwave")
128 |
129 | ## :raised_hands: Contribute
130 |
131 | You might encounter some bugs while using this app. You are more than welcome to contribute. Just submit changes via pull request and I will review them before merging. Make sure you follow community guidelines.
132 |
133 | ## :gem: Acknowledgements
134 |
135 | Useful resources and dependencies that are used in Brainwave.
136 |
137 | - [framer-motion](https://www.npmjs.com/package/framer-motion): ^11.0.12
138 | - [react](https://www.npmjs.com/package/react): ^18.2.0
139 | - [react-dom](https://www.npmjs.com/package/react-dom): ^18.2.0
140 | - [react-just-parallax](https://www.npmjs.com/package/react-just-parallax): ^3.1.16
141 | - [react-router-dom](https://www.npmjs.com/package/react-router-dom): ^6.22.3
142 | - [scroll-lock](https://www.npmjs.com/package/scroll-lock): ^2.1.5
143 | - [typewriter-effect](https://www.npmjs.com/package/typewriter-effect): ^2.21.0
144 | - [@types/react](https://www.npmjs.com/package/@types/react): ^18.2.56
145 | - [@types/react-dom](https://www.npmjs.com/package/@types/react-dom): ^18.2.19
146 | - [@vitejs/plugin-react](https://www.npmjs.com/package/@vitejs/plugin-react): ^4.2.1
147 | - [autoprefixer](https://www.npmjs.com/package/autoprefixer): ^10.4.18
148 | - [eslint](https://www.npmjs.com/package/eslint): ^8.56.0
149 | - [eslint-plugin-react](https://www.npmjs.com/package/eslint-plugin-react): ^7.33.2
150 | - [eslint-plugin-react-hooks](https://www.npmjs.com/package/eslint-plugin-react-hooks): ^4.6.0
151 | - [eslint-plugin-react-refresh](https://www.npmjs.com/package/eslint-plugin-react-refresh): ^0.4.5
152 | - [postcss](https://www.npmjs.com/package/postcss): ^8.4.35
153 | - [tailwindcss](https://www.npmjs.com/package/tailwindcss): ^3.4.1
154 | - [vite](https://www.npmjs.com/package/vite): ^5.1.4
155 |
156 | ## :coffee: Buy Me a Coffee
157 |
158 | [](https://www.buymeacoffee.com/sanidhy "Buy me a Coffee")
159 |
160 | ## :rocket: Follow Me
161 |
162 | [](https://github.com/sanidhyy "Follow Me")
163 | [](https://twitter.com/intent/tweet?text=Check+out+this+amazing+app:&url=https%3A%2F%2Fgithub.com%2Fsanidhyy%2Fbrainwave "Tweet about this project")
164 | [](https://www.youtube.com/@OPGAMER./?sub_confirmation=1 "Subscribe to my YouTube Channel")
165 |
166 | ## :books: Learn More
167 |
168 | To deepen your understanding of React.js and Netlify, explore the following resources:
169 |
170 | - [React.js Documentation](https://reactjs.org/docs) - delve into React.js features, concepts, and API.
171 | - [React Official Tutorial](https://reactjs.org/tutorial) - an interactive tutorial to get hands-on experience with React.
172 |
173 | For Netlify-specific information:
174 |
175 | - [Netlify Documentation](https://docs.netlify.com) - learn about Netlify's features, deployment options, and more.
176 | - [Getting Started with Netlify and React](https://docs.netlify.com/frameworks/react) - a guide on deploying React applications on Netlify.
177 |
178 | You're encouraged to contribute and provide feedback on [Netlify's GitHub repository](https://github.com/netlify/netlify).
179 |
180 | ## :page_with_curl: Deploy on Netlify
181 |
182 | The simplest way to deploy your React.js app is to use the [Netlify Platform](https://app.netlify.com/start) - a powerful platform for modern web projects.
183 |
184 | Explore the [Netlify deployment documentation](https://docs.netlify.com/site-deploys/create-deploys) for step-by-step instructions on deploying your React.js app on Netlify.
185 |
186 | Happy coding, and feel free to share your thoughts and improvements with the [Netlify community](https://community.netlify.com)!
187 |
188 | ## :star: Give A Star
189 |
190 | You can also give this repository a star to show more people and they can use this repository.
191 |
192 | ## :star2: Star History
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
46 | Unleast the power of AI within Brainwave. Upgrade your productivity
47 | with{" "}
48 |
49 | Brainwave
50 |
57 |
58 | , the open AI chat app.
59 |