diff --git a/src/components/Tags.jsx b/src/components/Tags.jsx
index 3ecb9a5..374631e 100644
--- a/src/components/Tags.jsx
+++ b/src/components/Tags.jsx
@@ -1,12 +1,12 @@
function Tags({ listOfTags }) {
const tagList = listOfTags.map((itemTag, keyTag) => {
return (
-
+
{itemTag}
);
});
- return
{tagList}
;
+ return
{tagList}
;
}
export default Tags;
diff --git a/src/pages/About.jsx b/src/pages/About.jsx
index 5165e96..dab15f0 100644
--- a/src/pages/About.jsx
+++ b/src/pages/About.jsx
@@ -1,8 +1,37 @@
+import { useRecoilValue } from "recoil";
+import Tags from "../components/Tags";
+import { skillsAtom } from "../store";
+
function About() {
+ const skills = useRecoilValue(skillsAtom);
+ console.log(skills);
return (
-
About
+
About
+
+
+
+ As a prospective Frontend Developer, I seek a challenging career
+ opportunity in the IT industry, where I can collaborate with a
+ dynamic team, continually learn, and foster innovation. My
+ dedication lies in transforming design concepts into user-friendly
+ experiences and achieving organizational goals through creativity
+ and teamwork. I aspire to engage in work that allows the utilization
+ of technical and creative skills to contribute effectively to the
+ growth of an organization. If you think you've got an opening that I
+ might like, let's connect 🔗
+
+
+
+
Languages:
+
+ Frameworks:
{" "}
+
+ Tools I use:
{" "}
+
+
+
);
}
diff --git a/src/pages/Experience.jsx b/src/pages/Experience.jsx
index 89cd9fe..3a5dbfc 100644
--- a/src/pages/Experience.jsx
+++ b/src/pages/Experience.jsx
@@ -30,7 +30,7 @@ function Experiance() {
src={item.img[0]}
/>
-
+
diff --git a/src/pages/Start.jsx b/src/pages/Start.jsx
index 6898c3f..a57d8a0 100644
--- a/src/pages/Start.jsx
+++ b/src/pages/Start.jsx
@@ -2,14 +2,18 @@ function Start() {
return (
+
-
Start
-
-
- Lorem ipsum dolor, sit amet consectetur adipisicing elit. Eos nostrum
- repudiandae, excepturi, eaque autem tenetur commodi qui praesentium
- nesciunt atque ullam consectetur cum aliquam corporis quae maxime libero
- impedit exercitationem?
+
Hello, my name is Maria.
+
I'm a Frontend Engineer
+
+ In my recent journey as a junior frontend engineer, I've gained
+ valuable experience through involvement in various projects within
+ startup environments. Passionate about art and design, I've developed
+ my skills beyond coding. Let's connect and explore opportunities
+ together! By the way, you might catch a glimpse of my black mini
+ poodle, Oreo, who's an integral part of my creative space.
+
);
diff --git a/src/store.js b/src/store.js
index 8adacb8..8b9ee6f 100644
--- a/src/store.js
+++ b/src/store.js
@@ -11,7 +11,7 @@ const experianceList = [
"/img/placeholder.png",
"/img/placeholder.png",
],
- tags: ["react", "vite", "wordpress"],
+ tags: ["React", "Vite", "Wordpress"],
link: "https://www.net0.se",
},
{
@@ -69,3 +69,24 @@ const experianceList = [
];
export const projectsAtom = atom({ key: "projects", default: experianceList });
+export const skillsAtom = atom({
+ key: "skills",
+ default: {
+ languages: ["JavaScript", "TypeScript", "SQL", "HTML", "CSS"],
+ frameworks: [
+ "React",
+ "Node.js",
+ "Next.js",
+ "Vite.js",
+ "Apollo GraphQL",
+ "Tailwind",
+ "Material UI",
+ "Chakra UI",
+ "Axios & Fetch",
+ "Framer Motion",
+ "WordPress",
+ "Shopify",
+ ],
+ tools: ["GIT", "MySQL", "Docker"],
+ },
+});
diff --git a/tailwind.config.js b/tailwind.config.js
index 11c8313..d601a40 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -6,6 +6,19 @@ export default {
sans: ["Roboto Mono", "system-ui"],
headline: ["Roboto Mono", "system-ui"],
},
+ fontSize: {
+ title: ["5rem", { fontWeight: "800" }],
+ subT: ["3.5rem", { fontWeight: "800" }],
+ subTMini: ["1.4rem", { fontWeight: "800" }],
+ tags: ["0.8rem", { fontWeight: "400" }],
+ sm: "0.8rem",
+ base: "1rem",
+ xl: "1.25rem",
+ "2xl": "1.563rem",
+ "3xl": "1.953rem",
+ "4xl": "2.441rem",
+ "5xl": "3.052rem",
+ },
extend: {
colors: {
neon: "#ccff00",