First Commit

This commit is contained in:
cesnimda
2026-03-21 11:55:27 +01:00
commit 2e8a29b4d0
1757 changed files with 166084 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
// @next
import { Archivo, Figtree, Roboto } from 'next/font/google';
export let Themes;
(function (Themes) {
Themes['THEME_DEFAULT'] = 'default';
Themes['THEME_CRM'] = 'crm';
Themes['THEME_AI'] = 'ai';
Themes['THEME_CRYPTO'] = 'crypto';
Themes['THEME_HOSTING'] = 'hosting';
Themes['THEME_PMS'] = 'pms';
Themes['THEME_HRM'] = 'hrm';
Themes['THEME_PLUGIN'] = 'plugin';
Themes['THEME_LMS'] = 'lms';
})(Themes || (Themes = {}));
export const CSS_VAR_PREFIX = '';
/*************************** CONFIG ***************************/
const config = {
currentTheme: Themes.THEME_DEFAULT
};
export default config;
/*************************** THEME - FONT FAMILY ***************************/
const fontRobot = Roboto({ subsets: ['latin'], weight: ['100', '300', '400', '500', '700', '900'] });
const fontArchivo = Archivo({ subsets: ['latin'], weight: ['400', '500', '600', '700'] });
const fontFigtree = Figtree({ subsets: ['latin'], weight: ['400', '500', '600', '700'] });
export const FONT_ROBOTO = fontRobot.style.fontFamily;
export const FONT_ARCHIVO = fontArchivo.style.fontFamily;
export const FONT_FIGTREE = fontFigtree.style.fontFamily;