/home/websdxuk/public_html/custom-web-packages.php
<?php
$currentPage = basename($_SERVER['PHP_SELF']);
$pageWithoutExtension = pathinfo($currentPage, PATHINFO_FILENAME);
$formattedPageName = ucwords(str_replace(['-', '_'], ' ', $pageWithoutExtension));
$pageTitle = ($pageWithoutExtension === 'index')  ? 'Home | Website Builders Official' : $formattedPageName . ' | Website Builders Official';
$description = 'We are Website Builders Official, a USA web design and Development firm. We offer web design, Brand Development, website management, and web development';
$author = 'Website Builders Official'; // No spaces for consistency
$keywords = '';
$baseUrl = 'https://websitebuildersofficial.com/';
$canonicalUrl = ($pageWithoutExtension === 'index') ? $baseUrl : $baseUrl . $pageWithoutExtension;
$ogImageUrl = $baseUrl . 'assets/images/url-1630492961529.webp';
include(__DIR__ . '/header.php');
?>



    <!-- about banner -->
    <section class="about_banner">
        <img src="assets/images/combo-packages-banner.webp" alt="img">
        <div class="container">
            <div class="row">
                <div class="col-lg-12" data-aos="fade-up" data-aos-duration="1000">
                    <h1>Combo Packages </h1>
                </div>
            </div>
        </div>
    </section>
    <!-- about banner -->

 <?php include('./include/packages.php')?>


<?php include('./footer.php')?>