forked from supacode/supacode.dev
-
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.
* Make One Pager * Add IONOS Deploy Now workflow * Remove IONOS Deploy Now workflow from project * Update some stuff * Update some stuff * Fix some more things * Add more stuff * Save colours * Finalise coloring * Make nice in mobile * Remove google analytics * Add PR template --------- Co-authored-by: Lennard Schwarz <[email protected]> Co-authored-by: ionos-deploy-now[bot] <78917126+ionos-deploy-now[bot]@users.noreply.github.com>
- Loading branch information
1 parent
9b8b06b
commit bbe0c36
Showing
22 changed files
with
77 additions
and
168 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
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
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,3 +1,27 @@ | ||
# Supacode | ||
# konsila.de | ||
|
||
https://supacode.dev | ||
Landing page for konsila.de | ||
|
||
# Development | ||
|
||
### Install | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
### Run live server for dev | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
### Build | ||
|
||
```bash | ||
npm run build | ||
``` | ||
|
||
# Acknowledgement | ||
|
||
This project is based on Maverick's amazing [portfolio website](https://www.supacode.dev/#hero), which I found on the on the [developer portfolios](https://github.com/emmabostian/developer-portfolios) repository. |
Binary file not shown.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export const siteData = { | ||
title: 'Supacode.dev', | ||
title: 'konsila.de', | ||
description: | ||
"Hey there! I'm Maverick, a Software Developer with a primary focus on Frontend Engineering.", | ||
"Hey there! I'm Lennard, a Software Developer with a primary focus on backend engineering.", | ||
themeColor: '#1a2130', | ||
}; |
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,29 +1,24 @@ | ||
import { codepen, email, twitter, linkedIn, github } from 'assets/icons'; | ||
import { email, linkedIn, github } from 'assets/icons'; | ||
|
||
export const socialLinks = [ | ||
{ | ||
name: 'Twitter', | ||
url: 'https://twitter.com/supacode', | ||
icon: twitter, | ||
}, | ||
{ | ||
name: 'GitHub', | ||
url: 'https://github.com/supacode', | ||
name: 'GitHub - personal', | ||
url: 'https://github.com/lennardschwarz', | ||
icon: github, | ||
}, | ||
{ | ||
name: 'CodePen', | ||
url: 'https://codepen.io/supacode', | ||
icon: codepen, | ||
name: 'GitHub - work', | ||
url: 'https://github.com/konsila', | ||
icon: github, | ||
}, | ||
{ | ||
name: 'LinkedIn', | ||
url: 'https://linkedin.com/in/supacode', | ||
url: 'https://www.linkedin.com/in/lennard-schwarz/', | ||
icon: linkedIn, | ||
}, | ||
{ | ||
name: 'E-mail', | ||
url: 'mailto:[email protected]', | ||
url: 'mailto:[email protected]', | ||
icon: email, | ||
}, | ||
]; |
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,6 +1,6 @@ | ||
--- | ||
index: 1 | ||
title: 'Supacode.dev' | ||
title: 'konsila.de' | ||
tools: | ||
- React | ||
- Typescript | ||
|
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 |
---|---|---|
|
@@ -6,27 +6,26 @@ export const HeroSection: React.FC = () => ( | |
<section className="hero" id="hero"> | ||
<div className="hero__left"> | ||
<h2 className="hero__lead-text"> | ||
My name is <span className="hero__lead-text--highlight">Maverick</span>. | ||
My name is <span className="hero__lead-text--highlight">Lennard</span>. | ||
</h2> | ||
|
||
<h3 className="hero__tag-text">I code for fun, and as a job.</h3> | ||
|
||
<p className="hero__desc-text"> | ||
<span aria-label="emoji wave" role="img"> | ||
👋🏽 | ||
👋🏻 | ||
</span>{' '} | ||
Hey there! I'm Maverick, a Software Developer with a primary focus | ||
on Frontend Engineering. <br /> Welcome to my little corner of the web, | ||
where I share notes, code snippets, and resources on topics that | ||
interest me. | ||
Hey there! I'm Lennard, a Software Developer with a primary focus | ||
on backend engineering. <br /> I also do some consulting and freelancing | ||
on the side. Need a hand to accelerate your projec? | ||
</p> | ||
|
||
<div className="hero__btn"> | ||
<AppLink | ||
className="hero__btn--link" | ||
text="Contact Me" | ||
title="Send me an email" | ||
to="mailto:[email protected]" | ||
to="mailto:[email protected]" | ||
newTab | ||
asButton | ||
> | ||
|
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
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
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
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.