-
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
08118d7
commit 3d2b529
Showing
9 changed files
with
1,979 additions
and
28 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export default function Footer() { | ||
return ( | ||
<footer> | ||
<p>© 2024 AlexProf | Oleksandr Lazurenko</p> | ||
</footer> | ||
); | ||
} |
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 |
---|---|---|
|
@@ -4,6 +4,9 @@ import Address from "./Address"; | |
import Certificates from "./certificates/Certificates"; | ||
import Currentposition from "./Currentposition"; | ||
import Social from "./Social"; | ||
import Footer from "./Footer"; | ||
import { Card } from 'antd'; | ||
const { Meta } = Card; | ||
|
||
const MyTabs = () => { | ||
return ( | ||
|
@@ -17,7 +20,24 @@ const MyTabs = () => { | |
</TabList> | ||
|
||
<TabPanel> | ||
<h2>Welcome</h2> | ||
<div className="homecontainer"> | ||
<Card hoverable className="homeimage" cover={<img alt="example" src="/Bewerbungsbild.jpg" />}> | ||
<Meta title="Oleksandr Lazurenko" description="[email protected]" /> | ||
</Card> | ||
<Card hoverable title="Welcome to AlexProf!" bordered={false} className="homecard" > | ||
<p>Dear Ladies and Gentlemen,</p> | ||
<p>welcome to the personal portfolio webpage of Oleksandr Lazurenko, a fullstack web developer. I can build a website for you from the scratch, starting with the design and ending with the backend. My main stack is MERN (MongoDB, Express, React, Node.js). Here are my strengths:</p> | ||
<ol> | ||
<li>Punctual</li> | ||
<li>Responsible</li> | ||
<li>Reliable</li> | ||
<li>Diligent</li> | ||
</ol> | ||
<p>If you would like to learn more, please do not hesitate to contact me.</p> | ||
<hr /> | ||
<Footer /> | ||
</Card> | ||
</div> | ||
</TabPanel> | ||
<TabPanel> | ||
<Social /> | ||
|
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
Oops, something went wrong.