Initial commit: Base NOVAChild theme

This commit is contained in:
AI Assistant
2026-04-03 16:11:48 +00:00
commit ded81d0b9f
18 changed files with 27584 additions and 0 deletions

25
NOVAChild/Bootstrap.php Normal file
View File

@@ -0,0 +1,25 @@
<?php declare(strict_types=1);
namespace Template\NOVAChild;
/**
* Class Bootstrap
* @package Template\NOVAChild
*/
class Bootstrap extends \Template\NOVA\Bootstrap
{
/**
* @inheritdoc
*/
public function boot(): void
{
parent::boot();
// whatever you do, always call parent::boot() or delete this method!
}
protected function registerPlugins(): void
{
parent::registerPlugins();
// whatever you do, always call parent::registerPlugins() or delete this method!
}
}