{CONTACT_ITEMS.map((item, index) => (
diff --git a/src/components/about/components/FrequentlyAskedQuestions.tsx b/src/components/about/components/FrequentlyAskedQuestions.tsx
new file mode 100644
index 0000000..a58718f
--- /dev/null
+++ b/src/components/about/components/FrequentlyAskedQuestions.tsx
@@ -0,0 +1,67 @@
+import { FC } from 'react';
+import { BiHelpCircle } from 'react-icons/bi';
+
+interface FAQItem {
+ question: string;
+ answer: string;
+}
+
+const FAQS: FAQItem[] = [
+ {
+ question: 'What is Quality Control in Laboratory?',
+ answer:
+ 'Laboratory Quality Control is a set of procedures designed to monitor and evaluate testing processes to ensure accurate and reliable test results.',
+ },
+ {
+ question: 'What are Westgard Rules?',
+ answer:
+ 'Westgard Rules are a set of statistical rules used to validate quality control data in clinical laboratories, helping detect both random and systematic errors.',
+ },
+ {
+ question: 'How often should QC be performed?',
+ answer:
+ 'QC should be performed at least once every 24 hours, before patient testing begins, after major maintenance, or when accuracy of results is questioned.',
+ },
+ {
+ question: 'What is a Levey-Jennings chart?',
+ answer:
+ 'A Levey-Jennings chart is a graphical tool that plots quality control values over time, helping visualize trends and shifts in laboratory testing processes.',
+ },
+ {
+ question: 'How do I interpret control limits?',
+ answer:
+ 'Control limits typically represent ±2SD and ±3SD from the mean. Values outside these limits may indicate problems with the testing process.',
+ },
+ {
+ question: 'Can I export my QC data?',
+ answer:
+ 'Yes, our system allows you to export quality control data in various formats for further analysis or documentation purposes.',
+ },
+];
+
+const FAQCard: FC = ({ question, answer }) => (
+
+
+
+
+
+
{question}
+
+
{answer}
+
+);
+
+const FrequentlyAskedQuestions: FC = () => (
+
Welcome to our free and open source solution for laboratory quality control.
We're here to simplify your daily lab operations and help you maintain
high-quality standards. Together with our growing community, we're making quality
@@ -42,12 +43,13 @@ const AboutUs = () => {