|
1 | 1 | import RootLayout from "../layouts/RootLayout"; |
2 | | -import { useThemeContext } from "../hooks/useThemeContext"; |
3 | 2 | import Heading2 from "../components/Heading2"; |
4 | | -import { myChessProfile, myLinkedinProfile } from "../data/links"; |
5 | | -import technologies from "../data/technologies"; |
6 | | -import ChessPawnIcon from "../components/ChessPawnIcon"; |
7 | | -import PakistanFlagIcon from "../components/PakistanFlagIcon"; |
8 | | -import DiscordIcon from "../components/DiscordIcon"; |
| 3 | +import { myLinkedinProfile } from "../data/links"; |
9 | 4 |
|
10 | 5 | const About = () => { |
11 | | - const { isLightMode } = useThemeContext(); |
12 | | - |
13 | 6 | return ( |
14 | 7 | <RootLayout> |
15 | 8 | <div className="page-container animate-slidein opacity-0 [--slidein-delay:300ms]"> |
16 | 9 | <div className="max-w-2xl mx-auto"> |
17 | 10 | <Heading2>About Me</Heading2> |
18 | 11 | <div className="mt-6 space-y-4 text-left text-lg text-slate-700 dark:text-slate-400"> |
19 | 12 | <p> |
20 | | - Hi 👋 I'm Sami, a 💻 Web Developer currently based in{" "} |
21 | | - <span className="inline-flex items-center mr-1"> |
22 | | - <PakistanFlagIcon /> |
23 | | - </span> |
24 | | - Pakistan. With years of professional experience in software |
25 | | - engineering, I specialise in front end development using{" "} |
26 | | - <span className="inline-flex items-center mr-1 h-3"> |
27 | | - <img |
28 | | - src={ |
29 | | - isLightMode |
30 | | - ? technologies.react.imageSrc.light |
31 | | - : technologies.react.imageSrc.dark |
32 | | - } |
33 | | - className={`object-contain w-full h-full`} |
34 | | - /> |
35 | | - </span> |
36 | | - React. |
| 13 | + Hi I'm Sami, a Web Developer based in Pakistan. My technology of |
| 14 | + choice is React which I've been using for over 4 years now. |
37 | 15 | </p> |
38 | 16 | <p> |
39 | | - I started off as a freelancer in 2019 building{" "} |
40 | | - <span className="inline-flex items-center mr-1"> |
41 | | - <DiscordIcon /> |
42 | | - </span> |
43 | | - Discord chatbots for clients online. I moved on to work for |
44 | | - Letswork as a Frontend Web Developer. My last job was a contract |
45 | | - role as a Web Developer at Classadia where I also got the chance |
46 | | - to work on the backend using{" "} |
47 | | - <span className="inline-flex items-center mr-1 h-3"> |
48 | | - <img |
49 | | - src={ |
50 | | - isLightMode |
51 | | - ? technologies.nestjs.imageSrc.light |
52 | | - : technologies.nestjs.imageSrc.dark |
53 | | - } |
54 | | - className={`object-contain w-full h-full`} |
55 | | - /> |
56 | | - </span> |
57 | | - NestJS. |
| 17 | + I started off as a freelancer in 2019 building Discord chatbots |
| 18 | + for clients online. I moved on to work for Letswork as a Frontend |
| 19 | + Web Developer. My last job was a contract role as a Web Developer |
| 20 | + at Classadia where I also got the chance to work on the backend |
| 21 | + using NestJS. |
58 | 22 | </p> |
59 | 23 | <p> |
60 | | - Apart from coding, I also enjoy 📓 journaling, reading 📖 books, |
61 | | - playing ⚽ football and playing{" "} |
62 | | - <a |
63 | | - href={myChessProfile} |
64 | | - target="_blank" |
65 | | - rel="noopener noreferrer" |
66 | | - className="text-blue-500 hover:underline" |
67 | | - > |
68 | | - <span className="inline-flex items-center mr-1"> |
69 | | - <ChessPawnIcon /> |
70 | | - </span> |
71 | | - chess |
72 | | - </a> |
73 | | - . |
| 24 | + Apart from coding, I also enjoy journaling, reading books, playing |
| 25 | + football and playing chess. |
74 | 26 | </p> |
75 | 27 | <p> |
76 | | - At the moment, I'm on the hunt for my next opportunity. Feel free |
77 | | - to{" "} |
78 | | - <a |
79 | | - href={myLinkedinProfile} |
80 | | - target="_blank" |
81 | | - rel="noopener noreferrer" |
82 | | - className="text-blue-500 hover:underline" |
83 | | - > |
84 | | - reach out |
85 | | - </a>{" "} |
86 | | - if you'd like to get in touch. |
| 28 | + At the moment, I'm on the hunt for my next opportunity. I'm open |
| 29 | + to both part-time and full-time work. Feel free to reach out if |
| 30 | + you'd like to get in touch. |
87 | 31 | </p> |
88 | 32 | </div> |
89 | 33 | <div className="mt-8 italic text-sm text-left text-slate-700 dark:text-slate-400"> |
90 | | - Updated: 2024-11-22 |
| 34 | + Updated: 2025-06-02 |
91 | 35 | </div> |
92 | 36 | </div> |
93 | 37 | </div> |
|
0 commit comments