<?php
header('Content-Type: application/xml; charset=utf-8');
$base  = 'https://www.orangefrogstudios.com';
$today = date('Y-m-d');
$urls  = [
    ['loc' => '/',                            'priority' => '1.00', 'changefreq' => 'monthly'],
    ['loc' => '/services/',                   'priority' => '0.90', 'changefreq' => 'monthly'],
    ['loc' => '/services/web-design/',        'priority' => '0.95', 'changefreq' => 'monthly'],
    ['loc' => '/services/seo/',               'priority' => '0.90', 'changefreq' => 'monthly'],
    ['loc' => '/services/custom-programming/','priority' => '0.85', 'changefreq' => 'monthly'],
    ['loc' => '/services/maintenance/',       'priority' => '0.82', 'changefreq' => 'monthly'],
    ['loc' => '/services/hosting/',           'priority' => '0.80', 'changefreq' => 'monthly'],
    ['loc' => '/services/ecommerce/',         'priority' => '0.88', 'changefreq' => 'monthly'],
    ['loc' => '/pricing/',                    'priority' => '0.88', 'changefreq' => 'monthly'],
    ['loc' => '/portfolio/',                  'priority' => '0.78', 'changefreq' => 'monthly'],
    ['loc' => '/quote/',                      'priority' => '0.92', 'changefreq' => 'yearly'],
    ['loc' => '/privacy/',                    'priority' => '0.25', 'changefreq' => 'yearly'],
    ['loc' => '/terms/',                      'priority' => '0.25', 'changefreq' => 'yearly'],
    ['loc' => '/sitemap/',                    'priority' => '0.20', 'changefreq' => 'yearly'],
];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($urls as $u): ?>
    <url>
        <loc><?php echo $base . $u['loc']; ?></loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq><?php echo $u['changefreq']; ?></changefreq>
        <priority><?php echo $u['priority']; ?></priority>
    </url>
<?php endforeach; ?>
</urlset>
