62 lines
2.5 KiB
PHP
62 lines
2.5 KiB
PHP
<?php
|
|
require_once __DIR__ . '/db/config.php';
|
|
run_migrations();
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!-- SEO & Meta Tags -->
|
|
<title>EvolveX - AI Guide</title>
|
|
<meta name="description" content="Chat with the EvolveX AI guide to explore tutorials on AI, coding, productivity, and more. Built with Flatlogic Generator.">
|
|
<meta name="keywords" content="ai chatbot, php chatbot, learn ai, coding tutorials, productivity hacks, digital marketing, cybersecurity training, wellness skills, entrepreneurship guide, Flatlogic">
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="EvolveX - AI Guide">
|
|
<meta property="og:description" content="Chat with the EvolveX AI guide to explore tutorials on AI, coding, productivity, and more.">
|
|
<meta property="og:image" content="">
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image">
|
|
<meta property="twitter:title" content="EvolveX - AI Guide">
|
|
<meta property="twitter:description" content="Chat with the EvolveX AI guide to explore tutorials on AI, coding, productivity, and more.">
|
|
<meta property="twitter:image" content="">
|
|
|
|
<!-- Styles -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="chat-container">
|
|
<header class="main-header">
|
|
<h1>EvolveX AI Guide</h1>
|
|
</header>
|
|
|
|
<div class="messages">
|
|
<div class="message bot">
|
|
<div class="message-content">
|
|
Hello! I'm the EvolveX guide. I can help you discover tutorials on money management, AI, coding, and more. What are you interested in learning today?
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<form id="chat-form" class="message-form">
|
|
<div class="message-form-wrapper">
|
|
<input type="text" id="message-input" placeholder="Ask about a category..." autocomplete="off">
|
|
</div>
|
|
<button type="submit" class="send-btn">Send</button>
|
|
</form>
|
|
</div>
|
|
|
|
<footer class="main-footer">
|
|
Built with Flatlogic Generator
|
|
</footer>
|
|
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|