Components
Place reusable UI parts in components/ and include them in layouts or pages.
Include in a layout
<?php include(__DIR__ . "/../components/navbar.php"); ?>
Include in a page
If the file is under pages/foo/bar.php, go back to project root first before navigating to components/.
<?php
// ใน pages/foo/bar.php
include __DIR__ . "/../../components/your-component.php";
?>