diff --git a/src/app/FAQs/faq.tsx b/src/app/FAQs/faq.tsx
new file mode 100644
index 0000000..4e1a6c5
--- /dev/null
+++ b/src/app/FAQs/faq.tsx
@@ -0,0 +1,140 @@
+// src/FAQ.tsx
+import React from 'react';
+import styled from 'styled-components';
+import { motion } from 'framer-motion';
+
+const FAQContainer = styled.div`
+ max-width: 800px;
+ margin: 40px auto;
+ font-family: Arial, sans-serif;
+`;
+
+const FAQHeader = styled.h1`
+ text-align: center;
+ margin-bottom: 40px;
+`;
+
+const FAQItem = styled(motion.div)`
+ margin-bottom: 20px;
+ background: #f9f9f9;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ overflow: hidden;
+`;
+
+const FAQSummary = styled(motion.summary)`
+ font-size: 18px;
+ font-weight: bold;
+ cursor: pointer;
+ padding: 15px;
+ background: #007BFF;
+ color: white;
+ border: none;
+ outline: none;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+`;
+
+const FAQDetails = styled(motion.div)`
+ padding: 0 20px 20px;
+`;
+
+const FAQ: React.FC = () => {
+ return (
+
+ Frequently Asked Questions (FAQs)
+
+
+
+
+ 1. What is BloxAI and what can it do?
+
+
+ BloxAI is an advanced AI-powered tool designed to streamline and enhance productivity by automating repetitive tasks and providing intelligent insights. It can be used for various applications such as data analysis, natural language processing, and task scheduling, helping users to save time and focus on more complex tasks.
+
+
+
+
+
+
+
+ 2. How can I install BloxAI on my system?
+
+
+ To install BloxAI, follow these steps:
+
+ - Clone the repository using:
git clone https://github.com/subhadeeproy3902/BloxAI.git
+ - Navigate to the project directory with:
cd BloxAI
+ - Install the necessary dependencies by running:
npm install
+ - Start the application using:
npm start
+
+ Ensure that you have Node.js and npm installed on your system before proceeding with the installation.
+
+
+
+
+
+
+
+ 3. How do I use BloxAI to automate repetitive tasks?
+
+
+ To use BloxAI for automating tasks, follow these steps:
+
+ - Create a new task script in the designated scripts directory.
+ - Define the tasks you want to automate using the provided APIs and libraries.
+ - Configure the task scheduler to run your scripts at specified intervals or triggers.
+ - Monitor the task execution and review the logs to ensure everything runs smoothly.
+
+ Refer to the User Guide for detailed examples and use cases.
+
+
+
+
+
+
+
+ 4. How can I contribute to the development of BloxAI?
+
+
+ We welcome contributions from the community! To contribute:
+
+ - Fork the repository to your GitHub account.
+ - Clone the forked repository to your local machine.
+ - Create a new branch for your feature or bug fix:
git checkout -b feature-name
+ - Make your changes and commit them with descriptive messages.
+ - Push your changes to your forked repository.
+ - Open a pull request to the main repository with a detailed description of your changes.
+
+ Ensure you follow our Contributing Guidelines for more information on the contribution process.
+
+
+
+
+
+
+
+ 5. Where can I find the detailed documentation for BloxAI?
+
+
+ You can find the detailed documentation for BloxAI in the docs directory of this repository. Additionally, the documentation is available on our official website. The documentation includes setup guides, API references, and examples to help you get started and make the most of BloxAI.
+
+
+
+
+
+
+
+ 6. Who can I contact for support or questions regarding BloxAI?
+
+
+ If you have any questions or need support, you can open an issue on our GitHub repository. For more direct assistance, you can contact us at support@example.com. We also have a community forum where you can ask questions and share insights with other BloxAI users.
+
+
+
+
+ );
+};
+
+export default FAQ;
diff --git a/src/app/contributors/ContributorsData.ts b/src/app/contributors/ContributorsData.ts
index 48d9516..7300856 100644
--- a/src/app/contributors/ContributorsData.ts
+++ b/src/app/contributors/ContributorsData.ts
@@ -150,4 +150,9 @@ export const ContributorsData = [
github: "https://github.com/chaanakyaam",
imageUrl: "https://avatars.githubusercontent.com/u/131477601?s=400&v=4",
},
+ {
+ name: "Mahek Patel",
+ github: "https://github.com/mahek0620",
+ imageUrl: "https://avatars.githubusercontent.com/u/136893675?s=400&v=4",
+ },
];
diff --git a/src/app/page.tsx b/src/app/page.tsx
index e339acf..7e4fb10 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -8,6 +8,7 @@ import Footer from "@/components/shared/Footer";
import ScrollToTopButton from "@/components/shared/ScrollUp";
import Lenis from '@studio-freight/lenis';
import { useEffect } from "react";
+import Faq from "@/components/shared/Faq";
export default function Home() {
useEffect(() => {
const lenis = new Lenis();
@@ -26,6 +27,9 @@ export default function Home() {
+
+
+
>
diff --git a/src/components/shared/Faq.tsx b/src/components/shared/Faq.tsx
new file mode 100644
index 0000000..f0abcda
--- /dev/null
+++ b/src/components/shared/Faq.tsx
@@ -0,0 +1,140 @@
+// src/FAQ.tsx
+import React from 'react';
+import styled from 'styled-components';
+import { motion } from 'framer-motion';
+
+const FAQContainer = styled.div`
+ max-width: 800px;
+ margin: 40px auto;
+ font-family: Arial, sans-serif;
+`;
+
+const FAQHeader = styled.h1`
+ text-align: center;
+ margin-bottom: 40px;
+`;
+
+const FAQItem = styled(motion.div)`
+ margin-bottom: 20px;
+ background: #f9f9f9;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ overflow: hidden;
+`;
+
+const FAQSummary = styled(motion.summary)`
+ font-size: 18px;
+ font-weight: bold;
+ cursor: pointer;
+ padding: 15px;
+ background: #007BFF;
+ color: white;
+ border: none;
+ outline: none;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+`;
+
+const FAQDetails = styled(motion.div)`
+ padding: 0 20px 20px;
+`;
+
+const FAQ: React.FC = () => {
+ return (
+
+ Frequently Asked Questions (FAQs)
+
+
+
+
+ 1. What is BloxAI and what can it do?
+
+
+ BloxAI is an advanced AI-powered tool designed to streamline and enhance productivity by automating repetitive tasks and providing intelligent insights. It can be used for various applications such as data analysis, natural language processing, and task scheduling, helping users to save time and focus on more complex tasks.
+
+
+
+
+
+
+
+ 2. How can I install BloxAI on my system?
+
+
+ To install BloxAI, follow these steps:
+
+ - Clone the repository using:
git clone https://github.com/subhadeeproy3902/BloxAI.git
+ - Navigate to the project directory with:
cd BloxAI
+ - Install the necessary dependencies by running:
npm install
+ - Start the application using:
npm start
+
+ Ensure that you have Node.js and npm installed on your system before proceeding with the installation.
+
+
+
+
+
+
+
+ 3. How do I use BloxAI to automate repetitive tasks?
+
+
+ To use BloxAI for automating tasks, follow these steps:
+
+ - Create a new task script in the designated scripts directory.
+ - Define the tasks you want to automate using the provided APIs and libraries.
+ - Configure the task scheduler to run your scripts at specified intervals or triggers.
+ - Monitor the task execution and review the logs to ensure everything runs smoothly.
+
+ Refer to the User Guide for detailed examples and use cases.
+
+
+
+
+
+
+
+ 4. How can I contribute to the development of BloxAI?
+
+
+ We welcome contributions from the community! To contribute:
+
+ - Fork the repository to your GitHub account.
+ - Clone the forked repository to your local machine.
+ - Create a new branch for your feature or bug fix:
git checkout -b feature-name
+ - Make your changes and commit them with descriptive messages.
+ - Push your changes to your forked repository.
+ - Open a pull request to the main repository with a detailed description of your changes.
+
+ Ensure you follow our Contributing Guidelines for more information on the contribution process.
+
+
+
+
+
+
+
+ 5. Where can I find the detailed documentation for BloxAI?
+
+
+ You can find the detailed documentation for BloxAI in the docs directory of this repository. Additionally, the documentation is available on our official website. The documentation includes setup guides, API references, and examples to help you get started and make the most of BloxAI.
+
+
+
+
+
+
+
+ 6. Who can I contact for support or questions regarding BloxAI?
+
+
+ If you have any questions or need support, you can open an issue on our GitHub repository. For more direct assistance, you can contact us at support@example.com. We also have a community forum where you can ask questions and share insights with other BloxAI users.
+
+
+
+
+ );
+};
+
+export default FAQ;