File: /home/bigfreeodds/public_html/wp-content/themes/neon-kick-live/page-about.php
<?php
/**
* Template Name: About
* data-page="about"
*
* @package NeonKickLive
*/
get_header();
?>
<div class="topbar-back">
<a class="back" href="<?php echo esc_url( home_url('/') ); ?>" aria-label="Back">‹</a>
<div class="title">ABOUT</div>
<span></span>
</div>
<div class="doc-card">
<h2>About BigFreeOdds</h2>
<h3>What is this?</h3>
<p>BigFreeOdds is a real-time football scores platform delivering live match data, statistics, lineups, and standings in a sleek dark-neon interface.</p>
<h3>Data Sources</h3>
<p>Live match data is powered by the Statpal Soccer API. All data is displayed for informational purposes only.</p>
<h3>No Gambling</h3>
<p>This platform does not promote, facilitate, or link to gambling services. Any probability figures shown are analytical model outputs only.</p>
<h3>Contact</h3>
<p>For enquiries, please use the <a href="<?php echo esc_url( neonkick_page_url_safe_ab( 'contact' ) ); ?>">Contact page</a>.</p>
</div>
<?php get_footer(); ?>
<?php
function neonkick_page_url_safe_ab( $slug ) {
$page = get_page_by_path( $slug );
return $page ? get_permalink( $page->ID ) : home_url( '/' . $slug . '/' );
}
?>