|
1 |
| -import { |
2 |
| - Box, |
3 |
| - Button, |
4 |
| - Grid, |
5 |
| - Typography, |
6 |
| -} from "@mui/material"; |
7 |
| -import React, { useState } from 'react'; |
8 |
| -import InfoListComponent from './InfoListComponent.js'; |
9 |
| - |
10 |
| - |
11 |
| -const data = |
12 |
| - [ |
13 |
| - { |
14 |
| - question: "How can solar panels help reduce building energy usage?", |
15 |
| - answer: "Solar panels can generate clean electricity from sunlight, ' allowing buildings to offset their energy consumption by using renewable energy, thereby reducing their reliance on conventional energy sources and lowering their carbon footprint." |
16 |
| - }, |
17 |
| - { |
18 |
| - question: "How can solar power help reduce building energy usage?", |
19 |
| - answer: "Solar power reduces building energy usage by converting sunlight into electricity, promoting sustainability." |
20 |
| - }, |
21 |
| - { |
22 |
| - question: "What is solar energy?", |
23 |
| - answer: "Solar energy is a sustainable and renewable form of power derived from the sun's radiation. It is harnessed using photovoltaic cells or solar thermal collectors, converting sunlight into electricity or heat to meet various energy needs. As an eco-friendly alternative to fossil fuels, solar power contributes to reducing greenhouse gas emissions and mitigating climate change while promoting energy independence and resilience." |
24 |
| - }, |
25 |
| - { |
26 |
| - question: "What is the main advantage of using solar power in buildings?", |
27 |
| - answer: "The main advantage of using solar power in buildings is that it provides a clean and renewable energy source, reducing greenhouse gas emissions and dependence on fossil fuels." |
28 |
| - }, |
29 |
| - { |
30 |
| - question: "What is a Packet RTU?", |
31 |
| - answer: "An HVAC packaged rooftop unit (RTU) is a self-contained system used for heating and cooling in commercial buildings. It is installed on the roof or ground and contains all major components within a single enclosure, including the compressor, condenser, evaporator, blower, and sometimes a heating element. RTUs are space-saving, energy-efficient, and easy to maintain, making them a popular choice for commercial applications." |
32 |
| - }, |
33 |
| - { |
34 |
| - question: "What is the energy duck curve, and why is it important in the context of energy consumption?", |
35 |
| - answer: "The energy duck curve represents the fluctuation of energy demand throughout the day, particularly in regions with high solar power capacity. It is important because it highlights the challenges of balancing supply and demand, as it shows a significant drop in demand during peak solar production, followed by a steep increase during the evening when solar generation decreases. This curve emphasizes the need for energy storage solutions and grid flexibility to manage the variability of renewable energy sources effectively." |
36 |
| - }, |
37 |
| - // Add more questions and answers as needed |
38 |
| - ]; |
| 1 | +import { Box, Button, Grid, Typography } from "@mui/material"; |
| 2 | +import React, { useState } from "react"; |
| 3 | +import InfoListComponent from "./InfoListComponent.js"; |
39 | 4 |
|
| 5 | +const data = [ |
| 6 | + { |
| 7 | + question: "How can solar panels help reduce building energy usage?", |
| 8 | + answer: |
| 9 | + "Solar panels can generate clean electricity from sunlight, ' allowing buildings to offset their energy consumption by using renewable energy, thereby reducing their reliance on conventional energy sources and lowering their carbon footprint.", |
| 10 | + }, |
| 11 | + { |
| 12 | + question: "How can solar power help reduce building energy usage?", |
| 13 | + answer: |
| 14 | + "Solar power reduces building energy usage by converting sunlight into electricity, promoting sustainability.", |
| 15 | + }, |
| 16 | + { |
| 17 | + question: "What is solar energy?", |
| 18 | + answer: |
| 19 | + "Solar energy is a sustainable and renewable form of power derived from the sun's radiation. It is harnessed using photovoltaic cells or solar thermal collectors, converting sunlight into electricity or heat to meet various energy needs. As an eco-friendly alternative to fossil fuels, solar power contributes to reducing greenhouse gas emissions and mitigating climate change while promoting energy independence and resilience.", |
| 20 | + }, |
| 21 | + { |
| 22 | + question: "What is the main advantage of using solar power in buildings?", |
| 23 | + answer: |
| 24 | + "The main advantage of using solar power in buildings is that it provides a clean and renewable energy source, reducing greenhouse gas emissions and dependence on fossil fuels.", |
| 25 | + }, |
| 26 | + { |
| 27 | + question: "What is a Packet RTU?", |
| 28 | + answer: |
| 29 | + "An HVAC packaged rooftop unit (RTU) is a self-contained system used for heating and cooling in commercial buildings. It is installed on the roof or ground and contains all major components within a single enclosure, including the compressor, condenser, evaporator, blower, and sometimes a heating element. RTUs are space-saving, energy-efficient, and easy to maintain, making them a popular choice for commercial applications.", |
| 30 | + }, |
| 31 | + { |
| 32 | + question: |
| 33 | + "What is the energy duck curve, and why is it important in the context of energy consumption?", |
| 34 | + answer: |
| 35 | + "The energy duck curve represents the fluctuation of energy demand throughout the day, particularly in regions with high solar power capacity. It is important because it highlights the challenges of balancing supply and demand, as it shows a significant drop in demand during peak solar production, followed by a steep increase during the evening when solar generation decreases. This curve emphasizes the need for energy storage solutions and grid flexibility to manage the variability of renewable energy sources effectively.", |
| 36 | + }, |
| 37 | + // Add more questions and answers as needed |
| 38 | +]; |
40 | 39 |
|
41 | 40 | export default function FAQ() {
|
42 | 41 | return (
|
43 | 42 | <Box bgcolor={"primary.main"} p={2}>
|
44 |
| - <Typography variant="h4" color="common.white" sx={{ marginTop: 5 }}>Frequently Asked Questions</Typography> |
| 43 | + <Typography variant="h4" color="common.white" sx={{ marginTop: 5 }}> |
| 44 | + Frequently Asked Questions |
| 45 | + </Typography> |
45 | 46 | <InfoListComponent data={data} />
|
46 | 47 | </Box>
|
47 | 48 | );
|
|
0 commit comments