Compare commits

..

2 Commits

Author SHA1 Message Date
d927f4eaa3 why is that there
Some checks failed
CI / test-and-build (push) Successful in 20s
Build & Deploy / build (push) Successful in 14s
Build & Deploy / deploy (push) Failing after 35s
2026-07-27 17:08:42 +02:00
7598c443b1 fix routing 2026-07-27 17:08:02 +02:00
2 changed files with 2 additions and 4 deletions

View File

@@ -53,8 +53,7 @@ export class App {
this.router.onChange((route) => this.applyRoute(route)) this.router.onChange((route) => this.applyRoute(route))
const initial = this.router.start() const initial = this.router.start()
this.scene = initial.scene this.applyRoute(initial)
this.overlay.setScene(this.scene)
this.router.replace(Router.sceneToBasePath(this.scene)) this.router.replace(Router.sceneToBasePath(this.scene))
this.resize() this.resize()

View File

@@ -29,8 +29,7 @@ export interface ResumeData {
export const RESUME: ResumeData = { export const RESUME: ResumeData = {
name: 'Ahmed Mohamed', name: 'Ahmed Mohamed',
contact: [ contact: [
{ label: '(+49) 15202103583' }, { label: 'ed.mohamed@tum.de', href: 'mailto:ineditedofficial@gmail.com' },
{ label: 'ed.mohamed@tum.de', href: 'mailto:ed.mohamed@tum.de' },
{ label: 'linkedin.com/in/inedited/', href: 'https://linkedin.com/in/inedited/' }, { label: 'linkedin.com/in/inedited/', href: 'https://linkedin.com/in/inedited/' },
{ label: 'github.com/inedited', href: 'https://github.com/inedited' }, { label: 'github.com/inedited', href: 'https://github.com/inedited' },
], ],