Skip to content

Commit 80b58d3

Browse files
committed
Update site
1 parent b57cc3e commit 80b58d3

File tree

8 files changed

+15
-13
lines changed

8 files changed

+15
-13
lines changed

public/images/ens_mark.png

450 KB
Loading

public/images/logoTransparent.png

36.5 KB
Loading

public/images/simpliservers.png

5.06 KB
Loading

public/images/v3x_logo.png

7.1 KB
Loading

src/components/navbar/Navbar.tsx

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { FC } from "react";
22
import styled from "styled-components";
33

4+
import LogoTransparent from "/images/logoTransparent.png";
5+
46
import NavbarLink from "./NavbarLink";
57

68
const NavbarContainer = styled.div`
@@ -64,11 +66,7 @@ const Navbar: FC = () => {
6466
<NavbarContainer>
6567
<NavbarContent>
6668
<Logo>
67-
<img
68-
style={{ width: "2rem" }}
69-
src="https://media.antony.red/logoTransparent.png"
70-
alt="Logo"
71-
/>
69+
<img style={{ width: "2rem" }} src={LogoTransparent} alt="Logo" />
7270
<HomeLink href="/">~/resume</HomeLink>
7371
</Logo>
7472
<LinksContainer>

src/components/parts/Introduction.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,12 @@ const Introduction: FC = () => {
123123
return (
124124
<SectionContainer name="Introduction" style={Wrapper}>
125125
<InfoContainer>
126-
<Name>Antonio Fran Štignjedec</Name>
126+
<Name>Antonio Fran Trstenjak</Name>
127127
<DetailContainer>
128128
<Detail
129129
name="E-Mail"
130-
value="antony@antony.red"
131-
href="mailto:antony@antony.red"
130+
value="antony@has.consulting"
131+
href="mailto:antony@has.consulting"
132132
/>
133133
<Detail
134134
name="Linked In"

src/components/parts/education/Education.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const InfoAlert: FC = () => {
7878
);
7979
};
8080

81-
const [UNI_ECTS, UNI_ECTS_MAX] = [0, 180] as const;
81+
const [UNI_ECTS, UNI_ECTS_MAX] = [19, 180] as const;
8282

8383
const Education: FC = () => {
8484
return (
@@ -112,7 +112,7 @@ const Education: FC = () => {
112112
description="University"
113113
descriptionAlignment="right"
114114
detail={{
115-
name: "Algebra University College",
115+
name: "Algebra University",
116116
location: "Zagreb, Croatia",
117117
years: 3,
118118
degree: "Bachelors",

src/components/parts/timeline/Experience.ts

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
import ENSLogo from "/images/ens_mark.png";
2+
import SimpliServersLogo from "/images/simpliservers.png";
3+
import V3XLogo from "/images/v3x_logo.png";
4+
15
import { Month, monthNames } from "../../../lib/date";
26

37
export type Experience =
@@ -77,7 +81,7 @@ export const Experiences: Experience[] = (
7781
company: "V3X Labs",
7882
companyWebsite: "https://v3x.company",
7983
type: "contract",
80-
logo: "https://media.antony.red/v3x_logo.png",
84+
logo: V3XLogo,
8185
location: "remote",
8286
start: monthFromSimple("Dec", 2021),
8387
end: monthFromSimple("Mar", 2024),
@@ -96,7 +100,7 @@ export const Experiences: Experience[] = (
96100
},
97101
{
98102
proxy: true,
99-
logo: "https://media.antony.red/ens_mark.png",
103+
logo: ENSLogo,
100104
company: "Ethereum Name Service",
101105
companyWebsite: "https://ens.domains",
102106
start: monthFromSimple("Jan", 2023),
@@ -107,7 +111,7 @@ export const Experiences: Experience[] = (
107111
{
108112
company: "SimpliServers",
109113
companyWebsite: "https://simpliservers.com",
110-
logo: "https://media.antony.red/simpliservers.png",
114+
logo: SimpliServersLogo,
111115
type: "contract",
112116
location: "remote",
113117
start: monthFromSimple("May", 2021),

0 commit comments

Comments
 (0)