$page->isHomePage()
Checks if the page is the home page
$page->isHomePage(): bool
Return type
bool
Parent class
Example
A custom title for the homepage
<?php if($page->isHomePage()): ?>
<title>Welcome to my website</title>
<?php else: ?>
<title><?= html($page->title() . ' / ' . $site->title()) ?></title>
<?php endif ?>