feat: added pages, forms, and functionality.
All checks were successful
Smart Deploy / build-deploy (push) Successful in 2m38s

This commit is contained in:
2026-02-08 21:11:57 +05:30
parent 3fb4c5bbe0
commit 1c6627bdfb
41 changed files with 6696 additions and 19 deletions

View File

@@ -0,0 +1,19 @@
import { Theme, Container } from './types';
const injectedTheme: string = '%INJECTED_THEME%';
const injectedContainer: string = '%INJECTED_CONTAINER%';
let theme: Theme = 'light';
let container: Container = 'none';
if (injectedTheme === 'light' || injectedTheme === 'dark') {
theme = injectedTheme;
}
if (injectedContainer === 'centered' || injectedContainer === 'none') {
container = injectedContainer;
}
export default {
theme,
container,
};