-
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
9480a57
commit ca212cd
Showing
9 changed files
with
237 additions
and
4 deletions.
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 |
---|---|---|
|
@@ -11,7 +11,9 @@ | |
--> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json"> | ||
<link rel="shortcut icon" type="image/jpg" href="AlexProf-logo-1.jpg"> | ||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Ballet:[email protected]&display=swap" rel="stylesheet"> | ||
<!-- | ||
Notice the use of %PUBLIC_URL% in the tags above. | ||
It will be replaced with the URL of the `public` folder during the build. | ||
|
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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
import MyTabs from "./components/MyTabs"; | ||
import Header from "./components/Header"; | ||
import "./styles.css"; | ||
|
||
export default function App() { | ||
return ( | ||
<div className="App"> | ||
<MyTabs /> | ||
<div className="maincontainer"> | ||
<Header /> | ||
<MyTabs /> | ||
</div> | ||
</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,16 @@ | ||
export default function Address() { | ||
return ( | ||
<div> | ||
<h2>Postal adress</h2> | ||
<p> | ||
Oleksandr Lazurenko | ||
<br /> | ||
Holzhofallee 36 | ||
<br /> | ||
64295 Darmstadt | ||
<br /> | ||
Deutschland | ||
</p> | ||
</div> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,9 @@ | ||
import Title from "./Title"; | ||
|
||
export default function Header() { | ||
return ( | ||
<div className="header"> | ||
<Title /> | ||
</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
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,64 @@ | ||
export default function Social() { | ||
return ( | ||
<div> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/instagram-new--v2.png" | ||
alt="instagram-new--v2" | ||
/> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/pulsar-line/48/threads.png" | ||
alt="threads" | ||
/> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/twitterx--v1.png" | ||
alt="twitterx--v1" | ||
/> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/facebook-new.png" | ||
alt="facebook-new" | ||
/> | ||
<a href="https://discord.gg/2sUr3M6WPS" target="_blank"> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/discord-logo.png" | ||
alt="discord-logo" | ||
/> | ||
</a> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/sf-regular-filled/48/medium-logo.png" | ||
alt="medium-logo" | ||
/> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/youtube-squared.png" | ||
alt="youtube-squared" | ||
/> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/tiktok--v1.png" | ||
alt="tiktok--v1" | ||
/> | ||
</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,70 @@ | ||
export default function Title() { | ||
return ( | ||
<div className="title"> | ||
<div> | ||
<img src="AlexProf-logo-1.jpg" alt="AlexProf" className="logo" /> | ||
<h1 className="pagetitle">AlexProf services</h1> | ||
</div> | ||
<div> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/instagram-new--v2.png" | ||
alt="instagram-new--v2" | ||
/> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/pulsar-line/48/threads.png" | ||
alt="threads" | ||
/> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/twitterx--v1.png" | ||
alt="twitterx--v1" | ||
/> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/facebook-new.png" | ||
alt="facebook-new" | ||
/> | ||
<a href="https://discord.gg/2sUr3M6WPS" target="_blank"> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/discord-logo.png" | ||
alt="discord-logo" | ||
/> | ||
</a> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/sf-regular-filled/48/medium-logo.png" | ||
alt="medium-logo" | ||
/> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/youtube-squared.png" | ||
alt="youtube-squared" | ||
/> | ||
<img | ||
className="social" | ||
width="48" | ||
height="48" | ||
src="https://img.icons8.com/color/48/tiktok--v1.png" | ||
alt="tiktok--v1" | ||
/> | ||
</div> | ||
</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 |
---|---|---|
@@ -1,8 +1,71 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body, | ||
html { | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
} | ||
|
||
.App { | ||
font-family: sans-serif; | ||
background-image: url("https://images.pexels.com/photos/673648/pexels-photo-673648.jpeg"); | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
background-position: fill; | ||
height: 100%; | ||
width: 100%; | ||
color: black; | ||
top: 0; | ||
left: 0; | ||
position: fixed; | ||
overflow-y: scroll; | ||
} | ||
|
||
.maincontainer { | ||
margin: 0 20px; | ||
} | ||
|
||
.social { | ||
height: 30px; | ||
width: 30px; | ||
} | ||
|
||
.logo { | ||
height: 30px; | ||
width: 30px; | ||
} | ||
|
||
.title { | ||
text-align: center; | ||
padding-top: 20px; | ||
display: inline-grid; | ||
grid-template-columns: 1fr 1fr; | ||
width: 100%; | ||
justify-items: stretch; | ||
align-items: center; | ||
} | ||
|
||
h1 { | ||
.title h1 { | ||
display: inline; | ||
margin-left: 10px; | ||
margin-right: 10px; | ||
font-family: "Ballet", cursive; | ||
font-optical-sizing: auto; | ||
font-weight: 900; | ||
font-style: normal; | ||
font-size: 50px; | ||
} | ||
|
||
.pagetitle { | ||
text-align: center; | ||
} | ||
|
||
@media screen and (max-width: 600px) { | ||
.title { | ||
grid-template-columns: 1fr; | ||
} | ||
} |