20 lines
511 B
PHP
20 lines
511 B
PHP
<?php
|
|
$pageTitle = 'AI & Tech Innovation';
|
|
require_once __DIR__ . '/includes/header.php';
|
|
?>
|
|
|
|
<div class="text-center py-5">
|
|
<h1 class="display-4">AI & Tech Innovation</h1>
|
|
<p class="lead">Exploring the future of artificial intelligence and technology.</p>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card p-5 text-center">
|
|
<p>This is the page for AI & Tech Innovation.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once __DIR__ . '/includes/footer.php'; ?>
|