This commit is contained in:
Joey Kimsey
2024-12-26 13:39:59 -05:00
parent 900ca8a691
commit ccc134d1b2
33 changed files with 270 additions and 104 deletions

View File

@ -28,6 +28,9 @@ class Home extends Controller {
public function index() {
self::$title = '{SITENAME}';
self::$pageDescription = 'AllTheBookmarks.com is here to provide you a better, faster, and easier way - to manage bookmarks across multiple browser and multiple devices seamlessly.';
if ( App::$isLoggedIn ) {
return Views::view( 'bookmarks.introduction' );
}
Views::view( 'index' );
}