feat(project): base smatec's frontend

This commit is contained in:
Tran Anh Tuan
2026-01-21 11:48:57 +07:00
commit 5c2a909bed
138 changed files with 43666 additions and 0 deletions

16
src/utils/logo.ts Normal file
View File

@@ -0,0 +1,16 @@
import gmsLogo from '../../public/gms-logo.png';
import sgwLogo from '../../public/sgw-logo.png';
import smatecLogo from '../../public/smatec-logo.png';
import spoleLogo from '../../public/spole-logo.png';
export const getLogoImage = () => {
switch (process.env.DOMAIN_ENV) {
case 'gms':
return gmsLogo;
case 'sgw':
return sgwLogo;
case 'spole':
return spoleLogo;
default:
return smatecLogo;
}
};