Let me introduce myself

import Saad from "@saad/core"
// -----------------------------------------------------------------------------
type Props = {
name: string;
age: number;
location: string;
email: string;
}
export default function AboutMe(props: Props) {
return (
<Saad
๐Ÿง”๐Ÿป = { I'm Mrabet saรขd, a 27 years old programmer, from Tangier Morocco ๐Ÿ‡ฒ๐Ÿ‡ฆ. },
๐Ÿง‘๐Ÿผโ€๐ŸŽ“ = { I got my bachelor's degree in Computer Engineering at 2021. },
๐ŸŽฏ = {
I enjoy being challenged and engaging with projects that require me to work outside
my comfort zone and knowledge set, as continuing to learn new languages and
development techniques.
},
๐Ÿ’ป = { I'm fluent in many programming languages, especially in Js/Ts & Python. },
๐Ÿ”Ž = {
My field of Interest are building new Web Technologies and Products and also in
areas related Mobile application and Natural Language Processing.
},
๐Ÿ’ญ = {
whenever possible, i also apply my passion for developing products with multiple
different frameworks and technologies, like Django, React, Angular, Vite, Redux, Node.js ...
}
/>
);
}