-
Notifications
You must be signed in to change notification settings - Fork 727
Expand file tree
/
Copy pathAbout.js
More file actions
85 lines (81 loc) · 2.76 KB
/
About.js
File metadata and controls
85 lines (81 loc) · 2.76 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
83
84
85
import React from "react";
import { Icon } from "@iconify/react";
import angularIcon from "@iconify/icons-logos/angular-icon";
import reactIcon from "@iconify/icons-logos/react";
import vueIcon from "@iconify/icons-logos/vue";
function About(props) {
const profilepic = "images/" + props?.sharedBasicInfo?.image;
const sectionName = props?.resumeBasicInfo?.section_name.about;
const hello = props?.resumeBasicInfo?.description_header;
const about = props?.resumeBasicInfo?.description;
return (
<section id="about">
<div className="col-md-12">
<h1 style={{ color: "black" }}>
<span>{sectionName}</span>
</h1>
<div className="row center mx-auto mb-5">
<div className="col-md-4 mb-5 center">
<div className="polaroid">
<span style={{ cursor: "auto" }}>
<img height="250px" src={profilepic} alt="Avatar placeholder" />
<Icon
icon={angularIcon}
style={{ fontSize: "400%", margin: "9% 5% 0 5%" }}
/>
<Icon
icon={reactIcon}
style={{ fontSize: "400%", margin: "9% 5% 0 5%" }}
/>
<Icon
icon={vueIcon}
style={{ fontSize: "400%", margin: "9% 5% 0 5%" }}
/>
</span>
</div>
</div>
<div className="col-md-8 center">
<div className="col-md-10">
<div className="card">
<div className="card-header">
<span
className="iconify"
data-icon="emojione:red-circle"
data-inline="false"
></span>{" "}
{" "}
<span
className="iconify"
data-icon="twemoji:yellow-circle"
data-inline="false"
></span>{" "}
{" "}
<span
className="iconify"
data-icon="twemoji:green-circle"
data-inline="false"
></span>
</div>
<div
className="card-body font-trebuchet text-justify ml-3 mr-3"
style={{
height: "auto",
fontSize: "132%",
lineHeight: "200%",
}}
>
<br />
<span className="wave">{hello} :) </span>
<br />
<br />
{about}
</div>
</div>
</div>
</div>
</div>
</div>
</section>
);
}
export default About;