diff --git a/src/components/Profile.jsx b/src/components/Profile.jsx index 6f29876..28f9ed5 100644 --- a/src/components/Profile.jsx +++ b/src/components/Profile.jsx @@ -3,9 +3,9 @@ import { data } from "../data"; export const Profile = () => { return ( <> -
+
Add Profile @@ -14,24 +14,23 @@ export const Profile = () => { Contributors Profiles
-
+
-
- {/* card for profile */} +
{data.map((value, key) => (
profile-image
-

+

{value.name}

@@ -40,15 +39,19 @@ export const Profile = () => { {value.description}

-

- {value.stack} +

+ Skills +

+

+ {value.skills}

-
diff --git a/src/data.jsx b/src/data.jsx index dd0d68b..de524f5 100644 --- a/src/data.jsx +++ b/src/data.jsx @@ -1,7 +1,7 @@ export const data = [ { name: "Peter Samuel", - stack: "REACT, TYPESCRIPT, PYTHON, FIREBASE ... ", + skills: "REACT, TYPESCRIPT, PYTHON, FIREBASE ... ", description: `I'm a competent software engineer`, socials: "https://github.com/petsamuel", image: "https://avatars.githubusercontent.com/u/65086865?v=4", diff --git a/src/index.css b/src/index.css index 937c7b0..ae2d44c 100644 --- a/src/index.css +++ b/src/index.css @@ -1,8 +1,9 @@ +@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"); + @tailwind base; @tailwind components; @tailwind utilities; -@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"); @layer components { *::selection {