You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.0 KiB
69 lines
2.0 KiB
interface Icons {
|
|
LIGHT: string;
|
|
DARK: string;
|
|
}
|
|
|
|
export const PATHS = {
|
|
IMAGES: {
|
|
PROJECTS: {
|
|
TEMP: '/assets/images/temp_project.png',
|
|
PORTFOLIO: '/assets/images/portfolionuxt_project.png',
|
|
IRIS: '/assets/images/iris_project.png',
|
|
CHROMINO: '/assets/images/chromino_project.png',
|
|
CLAVIER: '/assets/images/clavier_project.png',
|
|
MODELISATION: '/assets/images/modelisation_project.png',
|
|
SERVER: '/assets/images/server_project.png'
|
|
}
|
|
},
|
|
ICONS: {
|
|
GITHUB: '/assets/icons/github.png',
|
|
DEMO: '/assets/icons/demo.png',
|
|
DOCUMENTATION: '/assets/icons/documentation.png',
|
|
YOUTUBE: {
|
|
LIGHT: '/assets/icons/youtube-black.png',
|
|
DARK: '/assets/icons/youtube-white.png'
|
|
} as Icons
|
|
},
|
|
RESOURCES: {
|
|
CV: '/assets/files/CV_final_Mathéo_Thierry.pdf'
|
|
},
|
|
LINKS: {
|
|
YOUTUBE: 'https://www.youtube.com/@37b7',
|
|
PROJECTS: {
|
|
TEMP: {
|
|
GITHUB: 'https://github.com/votre-username/todo-app',
|
|
DEMO: 'https://todo-app-demo.com'
|
|
},
|
|
PORTFOLIO: {
|
|
GITHUB: 'https://github.com/37b7/portfolio_nuxt',
|
|
DEMO: 'https://votre-portfolio.com',
|
|
DOCUMENTATION: 'https://votre-portfolio.com/docs'
|
|
},
|
|
IRIS: {
|
|
GITHUB: 'https://github.com/votre-username/todo-app',
|
|
DEMO: 'https://todo-app-demo.com'
|
|
},
|
|
CHROMINO: {
|
|
GITHUB: 'https://github.com/votre-username/todo-app',
|
|
DEMO: 'https://todo-app-demo.com'
|
|
},
|
|
CLAVIER: {
|
|
GITHUB: 'https://github.com/votre-username/todo-app',
|
|
DEMO: 'https://todo-app-demo.com'
|
|
},
|
|
MODELISATION: {
|
|
GITHUB: 'https://github.com/votre-username/todo-app',
|
|
DEMO: 'https://todo-app-demo.com'
|
|
},
|
|
SERVER: {
|
|
GITHUB: 'https://github.com/votre-username/todo-app',
|
|
DEMO: 'https://todo-app-demo.com'
|
|
}
|
|
}
|
|
}
|
|
} as const;
|
|
|
|
export const DEFAULT_IMAGES = {
|
|
PROJECT: '/assets/images/default-project.png',
|
|
ICON: '/assets/icons/default-icon.png',
|
|
} as const; |