add dark mode on default start page

This commit is contained in:
janis
2023-08-31 13:51:05 +02:00
parent 6ea687fa47
commit 1ecfbacc89
4 changed files with 70 additions and 5 deletions

View File

@@ -17,4 +17,8 @@ module.exports = ( app, settings ) => {
app.get( '/startPage/helperFunction', ( req, res ) => {
res.sendFile( path.join( __dirname + '/../ui/home/helper.js' ) );
} );
app.get( '/startPage/mainStyle', ( req, res ) => {
res.sendFile( path.join( __dirname + '/../ui/home/main.css' ) );
} );
};