Skip to content

Commit

Permalink
Update site
Browse files Browse the repository at this point in the history
  • Loading branch information
Antony1060 committed Jun 2, 2024
1 parent b57cc3e commit 80b58d3
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 13 deletions.
Binary file added public/images/ens_mark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/logoTransparent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/simpliservers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/v3x_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 3 additions & 5 deletions src/components/navbar/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { FC } from "react";
import styled from "styled-components";

import LogoTransparent from "/images/logoTransparent.png";

import NavbarLink from "./NavbarLink";

const NavbarContainer = styled.div`
Expand Down Expand Up @@ -64,11 +66,7 @@ const Navbar: FC = () => {
<NavbarContainer>
<NavbarContent>
<Logo>
<img
style={{ width: "2rem" }}
src="https://media.antony.red/logoTransparent.png"
alt="Logo"
/>
<img style={{ width: "2rem" }} src={LogoTransparent} alt="Logo" />
<HomeLink href="/">~/resume</HomeLink>
</Logo>
<LinksContainer>
Expand Down
6 changes: 3 additions & 3 deletions src/components/parts/Introduction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ const Introduction: FC = () => {
return (
<SectionContainer name="Introduction" style={Wrapper}>
<InfoContainer>
<Name>Antonio Fran Štignjedec</Name>
<Name>Antonio Fran Trstenjak</Name>
<DetailContainer>
<Detail
name="E-Mail"
value="antony@antony.red"
href="mailto:antony@antony.red"
value="antony@has.consulting"
href="mailto:antony@has.consulting"
/>
<Detail
name="Linked In"
Expand Down
4 changes: 2 additions & 2 deletions src/components/parts/education/Education.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const InfoAlert: FC = () => {
);
};

const [UNI_ECTS, UNI_ECTS_MAX] = [0, 180] as const;
const [UNI_ECTS, UNI_ECTS_MAX] = [19, 180] as const;

const Education: FC = () => {
return (
Expand Down Expand Up @@ -112,7 +112,7 @@ const Education: FC = () => {
description="University"
descriptionAlignment="right"
detail={{
name: "Algebra University College",
name: "Algebra University",
location: "Zagreb, Croatia",
years: 3,
degree: "Bachelors",
Expand Down
10 changes: 7 additions & 3 deletions src/components/parts/timeline/Experience.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import ENSLogo from "/images/ens_mark.png";
import SimpliServersLogo from "/images/simpliservers.png";
import V3XLogo from "/images/v3x_logo.png";

import { Month, monthNames } from "../../../lib/date";

export type Experience =
Expand Down Expand Up @@ -77,7 +81,7 @@ export const Experiences: Experience[] = (
company: "V3X Labs",
companyWebsite: "https://v3x.company",
type: "contract",
logo: "https://media.antony.red/v3x_logo.png",
logo: V3XLogo,
location: "remote",
start: monthFromSimple("Dec", 2021),
end: monthFromSimple("Mar", 2024),
Expand All @@ -96,7 +100,7 @@ export const Experiences: Experience[] = (
},
{
proxy: true,
logo: "https://media.antony.red/ens_mark.png",
logo: ENSLogo,
company: "Ethereum Name Service",
companyWebsite: "https://ens.domains",
start: monthFromSimple("Jan", 2023),
Expand All @@ -107,7 +111,7 @@ export const Experiences: Experience[] = (
{
company: "SimpliServers",
companyWebsite: "https://simpliservers.com",
logo: "https://media.antony.red/simpliservers.png",
logo: SimpliServersLogo,
type: "contract",
location: "remote",
start: monthFromSimple("May", 2021),
Expand Down

0 comments on commit 80b58d3

Please sign in to comment.