Skip to content

Commit cd41007

Browse files
committed
Fix design issue
1 parent 37bd079 commit cd41007

File tree

1 file changed

+24
-15
lines changed

1 file changed

+24
-15
lines changed

src/app/about-me/page.tsx

+24-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import {
2+
Anchor,
23
Box,
34
Button,
45
Container,
@@ -14,6 +15,7 @@ import {
1415
} from "@mantine/core";
1516
import SiteFooter from "@/_components/footer/Footer";
1617
import { IconArrowUpRight } from "@tabler/icons-react";
18+
import Link from "next/link";
1719

1820
export default function AboutMe() {
1921
return (
@@ -23,7 +25,7 @@ export default function AboutMe() {
2325
<Box style={{ position: "relative" }}>
2426
<Title
2527
order={1}
26-
fz={80}
28+
fz={{ lg: 80, xs: 50 }}
2729
fw={900}
2830
ta="center"
2931
c={"light-dark(var(--mantine-color-dark-9), white)"}
@@ -45,15 +47,15 @@ export default function AboutMe() {
4547
<Image src={"/mohammad-rahmani.jpg"} radius={50} />
4648
{/* <Image src={"/me.png"} h={600} radius={50} /> */}
4749
</GridCol>
48-
<GridCol span={8} mx="auto" mt={50}>
49-
<Text fz={24} c="light-dark(black, white)">
50+
<GridCol span={{ lg: 8 }} mx="auto" mt={50}>
51+
<Text fz={{ sm: 24, xs: 16 }} c="light-dark(black, white)">
5052
I'm <strong>Mohammad Rahmani</strong>, a seasoned programmer with
5153
over a decade of experience in the dynamic world of{" "}
5254
<strong>software development</strong>. My journey in programming
5355
has been both challenging and rewarding, allowing me to hone my
5456
skills across various programming languages and technologies.
5557
</Text>
56-
<Text fz={24} mt={32} c="light-dark(black, white)">
58+
<Text fz={{ sm: 24, xs: 16 }} mt={32} c="light-dark(black, white)">
5759
Throughout my career, I have had the privilege to work on a
5860
diverse array of projects ranging from{" "}
5961
<strong>web applications</strong> to complex enterprise solutions.
@@ -63,15 +65,15 @@ export default function AboutMe() {
6365
applications that are not only robust and scalable but also
6466
provide seamless and engaging <strong>user experiences</strong>.
6567
</Text>
66-
<Text fz={24} mt={32} c="light-dark(black, white)">
68+
<Text fz={{ sm: 24, xs: 16 }} mt={32} c="light-dark(black, white)">
6769
With a commitment to excellence and a passion for innovation, I am
6870
dedicated to turning <strong>ideas</strong> into reality through{" "}
6971
<strong>code</strong>. Whether you're looking to build a new{" "}
7072
<strong>application</strong> from scratch or enhance an existing
7173
one, I bring a wealth of knowledge and a proven track record to
7274
ensure your project’s <strong>success</strong>.
7375
</Text>
74-
<Text fz={20} mt={32} c="light-dark(black, white)">
76+
<Text fz={{ sm: 20, xs: 16 }} mt={32} c="light-dark(black, white)">
7577
Thank you for visiting my page, and I look forward to the
7678
possibility of <strong>working together</strong>!
7779
</Text>
@@ -92,33 +94,40 @@ export default function AboutMe() {
9294
</Grid>
9395
<Space h={200} />
9496
<Grid>
95-
<GridCol span={6}>
96-
<Text fz={50} fw={600}>
97-
My past work experience
97+
<GridCol span={{ lg: 6 }}>
98+
<Text fz={{ md: 62, xs: 32 }} fw={800}>
99+
My Past Work <br /> Experiences
98100
</Text>
99101
</GridCol>
100-
<GridCol span={6}>
102+
<GridCol span={{ lg: 6 }}>
101103
<Box>
102104
<Group justify="space-between">
103105
<Stack gap={5}>
104106
<Text fz={18} fw={600} lts={0.8}>
105-
Software Developer
107+
Chief Technology Officer
108+
</Text>
109+
<Text
110+
c="gray"
111+
component={Link}
112+
href="https://orhan.af"
113+
target="_blank"
114+
>
115+
Orhan Technology
106116
</Text>
107-
<Text c="gray">Netlinks Ltd</Text>
108117
</Stack>
109-
<Text c="gray">2018 - 2020</Text>
118+
<Text c="gray">2024 - Present</Text>
110119
</Group>
111120
</Box>
112121
<Divider my={20} />
113122
<Box>
114123
<Group justify="space-between">
115124
<Stack gap={5}>
116125
<Text fz={18} fw={600} lts={0.8}>
117-
Senior Full-stack Software Developer
126+
Software Developer
118127
</Text>
119128
<Text c="gray">Netlinks Ltd</Text>
120129
</Stack>
121-
<Text c="gray">2020 - 2022</Text>
130+
<Text c="gray">2018 - 2020</Text>
122131
</Group>
123132
</Box>
124133
<Divider my={20} />

0 commit comments

Comments
 (0)