This commit is contained in:
Joey Kimsey
2025-02-02 00:36:17 -05:00
parent 77446dff94
commit 155c6a70f5
23 changed files with 1922 additions and 813 deletions

View File

@ -28,7 +28,7 @@ class Home extends Controller {
public function index() {
self::$title = '{SITENAME}';
self::$pageDescription = '{SITENAME} is here to provide you a better, faster, and easier - way to create and manage your own web applications.';
Views::view( 'landing' );
Views::view( 'index' );
}
public function login() {
@ -108,12 +108,6 @@ class Home extends Controller {
Views::view( 'faq' );
}
public function libraries() {
self::$title = 'Libraries - {SITENAME}';
self::$pageDescription = '{SITENAME} depends on several very important libraries, some of which are developed exclusively to support the project. Here you can find a list with more information.' ;
Views::view( 'deps.index' );
}
public function getstarted() {
self::$title = 'Get Started - {SITENAME}';
self::$pageDescription = '{SITENAME} is a great tool to bring your ideas to reality. On this page, you can find out how to get started today.' ;