Skip to content

Commit d72ab55

Browse files
committed
Adding IconCloud
1 parent 06d7664 commit d72ab55

File tree

1 file changed

+49
-40
lines changed

1 file changed

+49
-40
lines changed

app/About/page.tsx

+49-40
Original file line numberDiff line numberDiff line change
@@ -6,58 +6,67 @@ import Frameworks from "../../components/about/Frameworks";
66
import Databases from "../../components/about/Databases";
77
import Linuxdistros from "../../components/about/Linuxdistros";
88
import DevOps from "../../components/about/DevOps";
9+
import BentoGrid from "@/components/BentoGrid";
10+
import Footer from "@/components/Footer";
11+
import MyIconCloud from "@/components/MyIconCloud";
912

1013
function About() {
1114
return (
12-
<div className="about-section py-12 relative z-48">
13-
<div className="container mx-auto sm:px-14">
14-
<div className="flex flex-wrap" style={{ padding: "10px" }}>
15+
<>
16+
<div className="about-section py-12 relative z-48">
17+
<div className="container mx-auto sm:px-14">
1518
<div
16-
className="w-full md:w-2/3"
17-
style={{
18-
justifyContent: "center",
19-
paddingTop: "30px",
20-
paddingBottom: "50px",
21-
}}
19+
className="flex flex-col md:flex-row"
20+
style={{ padding: "10px" }}
2221
>
23-
<h1 className="text-4xl mb-6 text-center">
24-
Discover<strong className="purple"> My Journey</strong>
25-
</h1>
26-
<Aboutcard />
22+
<div
23+
className="w-full md:w-2/3"
24+
style={{
25+
justifyContent: "center",
26+
paddingTop: "30px",
27+
paddingBottom: "50px",
28+
}}
29+
>
30+
<h1 className="text-4xl mb-6 text-center">
31+
Discover<strong className="purple"> My Journey</strong>
32+
</h1>
33+
<Aboutcard />
34+
</div>
35+
<MyIconCloud />
2736
</div>
28-
</div>
29-
30-
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
31-
Languages <strong className="purple">I Command </strong>
32-
</h1>
33-
<ProgrammingLanguages />
37+
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
38+
Languages <strong className="purple">I Command </strong>
39+
</h1>
40+
<ProgrammingLanguages />
3441

35-
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
36-
Frameworks <strong className="purple">I Master</strong>
37-
</h1>
38-
<Frameworks />
42+
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
43+
Frameworks <strong className="purple">I Master</strong>
44+
</h1>
45+
<Frameworks />
3946

40-
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
41-
Database Systems <strong className="purple">I Depend On </strong>
42-
</h1>
43-
<Databases />
47+
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
48+
Database Systems <strong className="purple">I Depend On </strong>
49+
</h1>
50+
<Databases />
4451

45-
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
46-
Linux Distros <strong className="purple">I Navigate</strong>
47-
</h1>
48-
<Linuxdistros />
52+
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
53+
Linux Distros <strong className="purple">I Navigate</strong>
54+
</h1>
55+
<Linuxdistros />
4956

50-
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
51-
DevOps Skills <strong className="purple">I Excel In</strong>
52-
</h1>
53-
<DevOps />
57+
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
58+
DevOps Skills <strong className="purple">I Excel In</strong>
59+
</h1>
60+
<DevOps />
5461

55-
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
56-
Days <strong className="purple">I Code</strong>
57-
</h1>
58-
<Github />
62+
<h1 className="project-heading text-4xl mt-14 mb-14 text-center">
63+
Days <strong className="purple">I Code</strong>
64+
</h1>
65+
<Github />
66+
</div>
5967
</div>
60-
</div>
68+
<Footer />
69+
</>
6170
);
6271
}
6372

0 commit comments

Comments
 (0)