chore: fixed bugs in macchinisti page and some refactoring
parent
2dbdf99827
commit
e49e2ff0c5
Binary file not shown.
Before Width: | Height: | Size: 37 KiB |
Binary file not shown.
Before Width: | Height: | Size: 37 KiB |
@ -1,47 +0,0 @@
|
||||
[
|
||||
{
|
||||
"fullName": "Antonio De Lucreziis",
|
||||
"dateIn": "2019",
|
||||
"dateOut": "",
|
||||
"description": "Description here",
|
||||
"github": "https://github.com/adelucreziis",
|
||||
"website": "",
|
||||
"linkedin": ""
|
||||
},
|
||||
{
|
||||
"fullName": "Luca Lombardo",
|
||||
"dateIn": "2024",
|
||||
"dateOut": "",
|
||||
"description": "Algoritmi e Strutture Dati Bla Bla",
|
||||
"github": "https://github.com/lukefleed",
|
||||
"website": "https://lukefleex.xyz",
|
||||
"linkedin": "https://www.linkedin.com/in/l-lombardo/"
|
||||
},
|
||||
{
|
||||
"fullName": "Francesco Minnocci",
|
||||
"dateIn": "2022",
|
||||
"dateOut": "",
|
||||
"description": "Ho una laurea(?)",
|
||||
"github": "https://github.com/BachoSeven",
|
||||
"website": "https://bachoseven.com",
|
||||
"linkedin": ""
|
||||
},
|
||||
{
|
||||
"fullName": "Francesco Baldino",
|
||||
"dateIn": "2022",
|
||||
"dateOut": "",
|
||||
"description": "Bla Bla",
|
||||
"github": "",
|
||||
"website": "",
|
||||
"linkedin": ""
|
||||
},
|
||||
{
|
||||
"fullName": "Illya Serdyuk",
|
||||
"dateIn": "2019",
|
||||
"dateOut": "",
|
||||
"description": "Bla Bla",
|
||||
"github": "",
|
||||
"website": "",
|
||||
"linkedin": ""
|
||||
}
|
||||
]
|
@ -0,0 +1,35 @@
|
||||
- fullName: Antonio De Lucreziis
|
||||
entranceDate: 2019
|
||||
description: |
|
||||
Appassionato di geometria computazionale, parser, teoria dei linguaggi di programmazione.
|
||||
social:
|
||||
github: https://github.com/aziis98
|
||||
website: https://poisson.phc.dm.unipi.it/~delucreziis/
|
||||
|
||||
- fullName: Luca Lombardo
|
||||
entranceDate: 2024
|
||||
description: Algoritmi e Strutture Dati bla bla
|
||||
social:
|
||||
github: https://github.com/lukefleed
|
||||
website: https://lukefleex.xyz
|
||||
linkedin: https://www.linkedin.com/in/l-lombardo/
|
||||
|
||||
- fullName: Francesco Minnocci
|
||||
entranceDate: 2022
|
||||
description: Ho una laurea (?), bla bla tastiere meccaniche
|
||||
social:
|
||||
github: https://github.com/BachoSeven
|
||||
website: https://bachoseven.com
|
||||
|
||||
- fullName: Francesco Baldino
|
||||
entranceDate: 2022
|
||||
description: Bla bla Star Wars
|
||||
|
||||
- fullName: Illya Serdyuk
|
||||
entranceDate: 2020
|
||||
description: Bla bla Void Linux
|
||||
|
||||
- fullName: Francesco Manicastri
|
||||
entranceDate: 2022
|
||||
exitDate: 2024
|
||||
description: Bla bla Keenan Crane
|
@ -1,11 +0,0 @@
|
||||
[
|
||||
{
|
||||
"fullName": "Francesco Manicastri",
|
||||
"dateIn": "2022",
|
||||
"dateOut": "2024",
|
||||
"description": "Geometria bla bla",
|
||||
"github": "",
|
||||
"website": "",
|
||||
"linkedin": ""
|
||||
}
|
||||
]
|
@ -0,0 +1,17 @@
|
||||
declare module '*.yaml' {
|
||||
const value: any // Add type definitions here if desired
|
||||
export default value
|
||||
}
|
||||
|
||||
declare module '@/data/macchinisti.yaml' {
|
||||
type Macchinista = {
|
||||
fullName: string
|
||||
entranceDate: number
|
||||
exitDate?: number
|
||||
description: string
|
||||
social: Record<string, string>
|
||||
}
|
||||
|
||||
const value: Macchinista[]
|
||||
export default value
|
||||
}
|
Loading…
Reference in New Issue