-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from edotheDev/edothedev
🔥 build(profile): add edo profile
- Loading branch information
Showing
3 changed files
with
78 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
--- | ||
name: Edo | ||
description: Designer/Developer | ||
image: "https://i.pinimg.com/originals/18/ab/0b/18ab0b0acef5f0d8c395610d605ce034.jpg" | ||
tags: | ||
- UI/UX | ||
- ReactJS | ||
- GSAP | ||
- ThreeJS | ||
- C++ | ||
- C# | ||
- MySQL | ||
- 3D | ||
- Spline | ||
- Blender | ||
- Figma | ||
- Git | ||
--- | ||
import Edo from "./edothedev/Edo.jsx"; | ||
|
||
<div className="md:h-[75vh] h-[50vh] border-4 border-b-gray-50 rounded-3xl overflow-hidden"> | ||
<Edo /> | ||
</div> | ||
<h2 className="text-2xl text-center mt-12">About Me</h2> | ||
|
||
``` jsx | ||
<Name name={"Edo"}/> | ||
<Profession | ||
profession={[ | ||
"UI/UX Designer", | ||
"Front-end Dev", | ||
"3D Artist", | ||
"Fashion Stylist" | ||
]} | ||
/> | ||
<Technologies | ||
technologies={[ | ||
"UI/UX", | ||
"ReactJS", | ||
"GSAP", | ||
"ThreeJS", | ||
"C++", | ||
"C#", | ||
"MySQL", | ||
"Spline", | ||
"Blender", | ||
"Figma", | ||
"Git" | ||
]} | ||
/> | ||
<Description | ||
description={[ | ||
"Multi-talented: UI/UX Designer, Front-end Developer, 3D Artist, and Fashion Stylist", | ||
"50% self-taught, 50% university", | ||
"Freelancing and collaborating worldwide", | ||
"Passion for eye-catching, functional websites, especially in 3D", | ||
"Love creating stylish 3D models and animations", | ||
"Into crafting beautiful and functional fashion styles", | ||
"Love to write technical articles" | ||
]} | ||
/> | ||
<SpecialTalent | ||
specialTalent={"CREATIVE"} | ||
/> | ||
``` | ||
<h2 className="text-2xl text-center mt-12">Portfolio</h2> | ||
<div className="flex items-center justify-center mt-6"> | ||
<a className="underline" href="https://edothedeveloper.tech/">edothedeveloper.tech</a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import Spline from '@splinetool/react-spline'; | ||
|
||
export default function App() { | ||
return ( | ||
<Spline scene="https://prod.spline.design/523zxk5lcIEjBpbL/scene.splinecode" /> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters