HEX
Server: LiteSpeed
System: Linux c7.my-control-panel.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: bigfreeodds (5956)
PHP: 7.4.33
Disabled: NONE
Upload Files
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 . '/' );
}
?>