62 lines
2.4 KiB
PHP
62 lines
2.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MemeChat - Your Daily Dose of Humor</title>
|
|
<meta name="description" content="An AI-powered chat to make you laugh.">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
|
|
<!-- Platform-managed meta tags -->
|
|
<meta property="og:image" content="<?php echo $_SERVER['PROJECT_IMAGE_URL']; ?>">
|
|
<meta name="twitter:image" content="<?php echo $_SERVER['PROJECT_IMAGE_URL']; ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="hero d-flex flex-column justify-content-center align-items-center">
|
|
<h1 class="display-4 fw-bold">Welcome to MemeChat</h1>
|
|
<p class="lead my-3">Your AI companion for a brighter, funnier day.</p>
|
|
<button id="startChatBtn" class="btn btn-light btn-lg">
|
|
Start Chat <i class="bi bi-arrow-down-circle-fill ms-2"></i>
|
|
</button>
|
|
</section>
|
|
|
|
<!-- Chat Interface Section -->
|
|
<main class="container">
|
|
<div id="chatContainer" class="chat-container">
|
|
<div class="chat-header">
|
|
<h5 class="mb-0">MemeChat AI</h5>
|
|
</div>
|
|
<div id="chatBox" class="chat-box">
|
|
<!-- Chat messages will be appended here -->
|
|
</div>
|
|
<div class="chat-input">
|
|
<form id="chatForm" class="d-flex">
|
|
<input type="text" id="chatInput" class="form-control" placeholder="Type your message..." autocomplete="off">
|
|
<button type="submit" class="btn btn-primary ms-2">
|
|
<i class="bi bi-send-fill"></i> Send
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="text-center py-4">
|
|
<p>© <?php echo date("Y"); ?> MemeChat. All Rights Reserved.</p>
|
|
</footer>
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
|
|
</body>
|
|
</html>
|