-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f7f262
commit d798be7
Showing
4 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -7,25 +7,38 @@ import "@fontsource/montserrat/400.css"; // Specify weight | |
import "@fontsource/montserrat/500.css"; // Specify weight | ||
import "@fontsource/montserrat/600.css"; // Specify weight | ||
import "@fontsource/montserrat/700.css"; // Specify weight | ||
import { FaEnvelope, FaLinkedinIn, FaCity } from "react-icons/fa"; | ||
|
||
import img from "./assets/fa_photo.jpg" | ||
|
||
function App() { | ||
|
||
return ( | ||
<> | ||
<div className="font-montserrat flex gap-4 justify-center px-4 md:px-12 py-12 md:py-24"> | ||
<div className="font-montserrat flex flex-col justify-between gap-4 px-4 md:px-12 pt-12 md:pt-24"> | ||
<div className="w-full flex gap-8 max-w-[80rem] flex-col lg:flex-row"> | ||
<div className="flex w-fit justify-start flex-col items-start gap-4"> | ||
<div className=" sticky top-12 pt-2 flex flex-col gap-6"> | ||
<img className="rounded-full object-cover w-24 h-24 lg:h-32 lg:w-32" src={img} alt="Filip Akkad Image"/> | ||
<h1 className="text-left whitespace-nowrap text-2xl md:text-4xl">Filip Akkad</h1> | ||
<div className="text-left flex flex-col gap-2"> | ||
<h1 className="text-left whitespace-nowrap text-2xl md:text-4xl">Filip Akkad</h1> | ||
<a className="text-xs flex gap-2 items-center" | ||
href="mailto:[email protected]"><FaEnvelope/> [email protected]</a> | ||
<a className="text-xs flex gap-2 items-center" | ||
href="https://www.linkedin.com/in/filip-akkad/"><FaLinkedinIn/>@filipakkad</a> | ||
<span className="text-xs flex gap-2 items-center"><FaCity/> Warsaw</span> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="flex w-full justify-start"> | ||
<Offer /> | ||
<Offer/> | ||
</div> | ||
</div> | ||
<footer> | ||
<div className="px-4 py-12 w-full font-light"> | ||
designed and implemented by Filip Akkad | ||
</div> | ||
</footer> | ||
</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