Skip to content

Commit

Permalink
Reset commit history to remove unwanted data
Browse files Browse the repository at this point in the history
Upload better portrait image
Update core-layout.astro
Update index.astro
Aria-hide icons in contact bar
Move footer from index.astro to core-layout.astro
  • Loading branch information
kubgus committed Sep 9, 2024
1 parent 840dd0d commit 87ea86e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
Binary file added public/images/linkedin-portrait-v2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions src/components/contact-bar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@
<figure aria-label="Personal links">

<a href="mailto:[email protected]" aria-label="Email" target="_blank" class="implied">
<i class="fas fa-envelope"></i>
<i aria-hidden="true" class="fas fa-envelope"></i>
</a>

<a href="https://github.com/kubgus" aria-label="GitHub" target="_blank" class="implied">
<i class="fab fa-github"></i>
<i aria-hidden="true" class="fab fa-github"></i>
</a>

<a href="https://www.linkedin.com/in/kubgus/" aria-label="LinkedIn" target="_blank" class="implied">
<i class="fab fa-linkedin"></i>
<i aria-hidden="true" class="fab fa-linkedin"></i>
</a>

<a href="https://twitter.com/gustafik_dev" aria-label="Twitter" target="_blank" class="implied">
<i class="fab fa-twitter"></i>
<i aria-hidden="true" class="fab fa-twitter"></i>
</a>

<a href="https://discord.com/users/643898809193332786/" aria-label="Discord" target="_blank" class="implied">
<i class="fab fa-discord"></i>
<i aria-hidden="true" class="fab fa-discord"></i>
</a>

<a href="https://patreon.com/user?u=96061849&utm_medium=clipboard_copy&utm_source=copyLink&utm_campaign=creatorshare_creator&utm_content=join_link" aria-label="Patreon" target="_blank" class="implied">
<i class="fab fa-patreon"></i>
<i aria-hidden="true" class="fab fa-patreon"></i>
</a>

</figure>
Expand Down
11 changes: 10 additions & 1 deletion src/layouts/core-layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SEO } from 'astro-seo';
const {
title = "Jakub Gustafik",
description = "Student & software developer based in Slovakia",
image = "/images/linkedin-portrait.jpg",
image = "/images/linkedin-portrait-v2.jpg",
canonical = `https://gustafik.com` + Astro.url.pathname,
og_title = title,
og_type = "website",
Expand Down Expand Up @@ -74,6 +74,10 @@ if (frontmatter != null) {
</head>
<body>
<slot />

<footer>
<span id="license">©2024 Jakub Gustafik</span>
</footer>
</body>
</html>

Expand Down Expand Up @@ -126,6 +130,11 @@ if (frontmatter != null) {
padding: 0;
}

footer {
text-align: center;
color: var(--secondary-background-dark);
}

.container {
border: solid 1px var(--secondary-background-dark);
border-radius: 12px;
Expand Down
11 changes: 1 addition & 10 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ let tab = "tab-1", translateSelector = "0%";
<Navbar />

<header class="container" aria-hidden="true">
<img src="/images/linkedin-portrait.jpg" alt="" id="portrait"/>
<img src="/images/linkedin-portrait-v2.jpg" alt="" id="portrait"/>
<figure>
<h1>Jakub Gustafik</h1>
<span class="faded">Student & software developer based in Slovakia</span>
Expand Down Expand Up @@ -72,10 +72,6 @@ let tab = "tab-1", translateSelector = "0%";
<Blog />
</article>
</main>

<footer>
<span id="license">©2024 Jakub Gustafik</span>
</footer>
</CoreLayout>

<script>
Expand Down Expand Up @@ -217,11 +213,6 @@ let tab = "tab-1", translateSelector = "0%";
padding: 1rem 1.5rem;
}
}

footer {
text-align: center;
color: var(--secondary-background-dark);
}
</style>

<style is:global>
Expand Down

0 comments on commit 87ea86e

Please sign in to comment.