forked from SrigadaAkshayKumar/stock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.jsx
More file actions
82 lines (77 loc) · 2.98 KB
/
Copy pathAbout.jsx
File metadata and controls
82 lines (77 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import React from "react";
import { FaChartLine, FaClock, FaRobot } from "react-icons/fa";
import { MdOutlineDesignServices } from "react-icons/md";
import { FiRefreshCcw } from "react-icons/fi";
import { Link } from "react-router-dom";
import "../App.css";
import BackToTopBtn from "../components/BackToTopBtn";
const AboutComponent = () => {
const iconColor = "var(--color-primary)";
const headingStyle = { color: "var(--color-primary)" };
return (
<div className="about-container">
<div id="About">
<h1>About Us</h1>
<h3>Welcome to our AI Stock Analyzer</h3>
<p>Your personal companion for real-time stock insights.</p>
<p>
Our app offers real-time stock data, user-friendly interfaces, and
secure authentication to ensure a seamless trading experience.
</p>
<p>
Whether you are a beginner or an experienced trader, our platform is
designed to help you make informed decisions and manage your
investments effectively.
</p>
<div className="grid-container">
<div className="grid-item">
<FaChartLine size={40} color={iconColor} />
<h2 style={headingStyle}>Real-Time Data</h2>
<p>
Access live stock prices and market trends to stay ahead in your
trading journey.
</p>
</div>
<div className="grid-item">
<MdOutlineDesignServices size={40} color={iconColor} />
<h2 style={headingStyle}>User-Friendly Interface</h2>
<p>
Navigate through our intuitive design that makes trading easy and
efficient.
</p>
</div>
<div className="grid-item">
<FaRobot size={40} color={iconColor} />
<h2 style={headingStyle}>AI-Powered Predictions</h2>
<p>Accurate forecasts using Machine Learning and AI models.</p>
</div>
<div className="grid-item">
<FaChartLine size={40} color={iconColor} />
<h2 style={headingStyle}>Market Trend Analysis</h2>
<p>Clear visuals to show current and future trends.</p>
</div>
<div className="grid-item">
<FiRefreshCcw size={40} color={iconColor} />
<h2 style={headingStyle}>Continuous Updates</h2>
<p>
We are constantly improving our app to provide you with the best
trading experience.
</p>
</div>
<div className="grid-item">
<FaClock size={40} color={iconColor} />
<h2 style={headingStyle}>24/7 Data Monitoring</h2>
<p>Constant tracking for updated insights.</p>
</div>
</div>
<div className="button-container">
<Link to="/stocks">
<button className="cta-button">Get Started Now</button>
</Link>
</div>
</div>
<BackToTopBtn />
</div>
);
};
export default AboutComponent;