Update main page
This commit is contained in:
parent
fffa18f83d
commit
76b8863ec1
2 changed files with 9 additions and 7 deletions
|
|
@ -22,7 +22,7 @@ import { sdf2d } from './projects/sdf2d';
|
||||||
import { towers } from './projects/towers';
|
import { towers } from './projects/towers';
|
||||||
import { CV, Email, GitHubLink, LinkedIn } from './shared';
|
import { CV, Email, GitHubLink, LinkedIn } from './shared';
|
||||||
|
|
||||||
export const createPortfolio = (): Array<PageElement> => [
|
export const portfolio: Array<PageElement> = [
|
||||||
new Main(
|
new Main(
|
||||||
new Background(1, 1),
|
new Background(1, 1),
|
||||||
new Header({
|
new Header({
|
||||||
|
|
@ -30,9 +30,11 @@ export const createPortfolio = (): Array<PageElement> => [
|
||||||
image: me,
|
image: me,
|
||||||
imageAltText: 'a picture of me',
|
imageAltText: 'a picture of me',
|
||||||
about: [
|
about: [
|
||||||
"With more than six years of professional experience and a degree in Computer Science, I can confidently tackle any challenge regardless of its complexity. My interests span diverse areas, making me able to architect vast and sophisticated systems with a clear understanding. I'm keen on designing distributed systems, especially when AI/ML is involved.",
|
'With more than six years of professional software engineering experience and a degree in Computer Science, I can confidently undertake any challenge. My interests span diverse areas, allowing me to design complex — even multidisciplinary — systems with a clear understanding.',
|
||||||
"I'm excited to take my part in connecting people and providing them with AI/ML solutions along with the necessary computing capabilities which were unimaginable even a decade ago.",
|
|
||||||
' Discover some of my more interesting earlier projects. They are all listed below. Further information about me can be found at the bottom of the page.',
|
"I'm passionate about architecting and building large-scale systems, especially in the context of AI/ML. However, in my free time, I also enjoy working with shaders, data visualisation, and sometimes even microcontrollers.",
|
||||||
|
|
||||||
|
"Discover some of my more exciting projects below. If you'd like to reach out to me, my contact details are at the bottom of the page.",
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
|
@ -60,7 +62,7 @@ export const createPortfolio = (): Array<PageElement> => [
|
||||||
LinkedIn('https://www.linkedin.com/in/andras-schmelczer'),
|
LinkedIn('https://www.linkedin.com/in/andras-schmelczer'),
|
||||||
Email('mailto:andras@schmelczer.dev'),
|
Email('mailto:andras@schmelczer.dev'),
|
||||||
],
|
],
|
||||||
lastEditText: 'Last modified on ',
|
lastEditText: 'Last modified on',
|
||||||
})
|
})
|
||||||
),
|
),
|
||||||
new ImageViewer(),
|
new ImageViewer(),
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import '../static/no-change/favicons/favicon.ico';
|
||||||
import '../static/no-change/favicons/site.webmanifest';
|
import '../static/no-change/favicons/site.webmanifest';
|
||||||
import '../static/no-change/og-image.jpg';
|
import '../static/no-change/og-image.jpg';
|
||||||
import '../static/no-change/robots.txt';
|
import '../static/no-change/robots.txt';
|
||||||
import { createPortfolio } from './data/create-portfolio';
|
import { portfolio } from './data/create-portfolio';
|
||||||
import {
|
import {
|
||||||
addSupportForTabNavigation,
|
addSupportForTabNavigation,
|
||||||
removeUnnecessaryOutlines,
|
removeUnnecessaryOutlines,
|
||||||
|
|
@ -18,5 +18,5 @@ import './index.scss';
|
||||||
|
|
||||||
addSupportForTabNavigation();
|
addSupportForTabNavigation();
|
||||||
removeUnnecessaryOutlines();
|
removeUnnecessaryOutlines();
|
||||||
createPortfolio().forEach((e) => e.attachToDOM(document.body));
|
portfolio.forEach((e) => e.attachToDOM(document.body));
|
||||||
scrollToFragment();
|
scrollToFragment();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue