Enhance routing and layout for site-specific pages. Added support for dynamic site routes, updated component imports, and improved layout styles for fullscreen display. Refactored navigation to utilize site data for dynamic button generation.
CI / build (push) Has been skipped
CI / deploy (push) Successful in 1m0s

This commit is contained in:
eewing
2026-02-18 15:33:46 -06:00
parent ec317eb17c
commit 1f14c6d422
19 changed files with 185 additions and 45 deletions
+26
View File
@@ -0,0 +1,26 @@
/**
* Config for each linked site: route slug → URL and optional per-site options.
* Add site-specific options here (e.g. title, sandbox, allow) as needed.
*/
export const sites = {
prism: {
url: 'https://prism.ccllc.pro',
title: 'Prism'
},
tasgrid: {
url: 'https://tasgrid.ccllc.pro',
title: 'TasGrid'
},
stackq: {
url: 'https://stackq.ccllc.pro',
title: 'Stackq'
},
hrm: {
url: 'https://hrm.ccllc.pro',
title: 'HRM'
}
} as const;
export type SiteSlug = keyof typeof sites;
export const siteSlugs = Object.keys(sites) as SiteSlug[];