add prices page

This commit is contained in:
Schneider Roland
2025-01-28 23:09:42 +01:00
parent ceac176558
commit 93af3607e9
12 changed files with 333 additions and 18 deletions

View File

@@ -11,7 +11,8 @@ type Props = {
const pathToBreadCrumbs = (path: string) => {
const mapping: Record<string, string> = {
'/' : 'Kezdőlap',
'about' : 'Rólam'
'about' : 'Rólam',
'services' : 'Szolgáltatásaim',
}
if ( mapping.hasOwnProperty(path)){
return mapping[path];