diff --git a/src/data/create-portfolio.ts b/src/data/create-portfolio.ts index cece34e..6dcba26 100644 --- a/src/data/create-portfolio.ts +++ b/src/data/create-portfolio.ts @@ -22,7 +22,7 @@ import { sdf2d } from './projects/sdf2d'; import { towers } from './projects/towers'; import { CV, Email, GitHubLink, LinkedIn } from './shared'; -export const createPortfolio = (): Array => [ +export const portfolio: Array = [ new Main( new Background(1, 1), new Header({ @@ -30,9 +30,11 @@ export const createPortfolio = (): Array => [ image: me, imageAltText: 'a picture of me', 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.", - "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.', + '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 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 => [ LinkedIn('https://www.linkedin.com/in/andras-schmelczer'), Email('mailto:andras@schmelczer.dev'), ], - lastEditText: 'Last modified on ', + lastEditText: 'Last modified on', }) ), new ImageViewer(), diff --git a/src/index.ts b/src/index.ts index afadd86..eba2d68 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,7 +8,7 @@ import '../static/no-change/favicons/favicon.ico'; import '../static/no-change/favicons/site.webmanifest'; import '../static/no-change/og-image.jpg'; import '../static/no-change/robots.txt'; -import { createPortfolio } from './data/create-portfolio'; +import { portfolio } from './data/create-portfolio'; import { addSupportForTabNavigation, removeUnnecessaryOutlines, @@ -18,5 +18,5 @@ import './index.scss'; addSupportForTabNavigation(); removeUnnecessaryOutlines(); -createPortfolio().forEach((e) => e.attachToDOM(document.body)); +portfolio.forEach((e) => e.attachToDOM(document.body)); scrollToFragment();