31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<footer>
|
|
<div class="container">
|
|
<p>© <?php echo date("Y"); ?> Winter Wonderland. All Rights Reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<div class="chat-icon">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-message-square"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path></svg>
|
|
</div>
|
|
|
|
<div class="chat-window">
|
|
<div class="chat-header">
|
|
<h5>AI Trip Planner</h5>
|
|
<button class="close-chat">×</button>
|
|
</div>
|
|
<div class="chat-body">
|
|
<div class="message-container">
|
|
<div class="message received">
|
|
Hi there! How can I help you plan your winter adventure?
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="chat-input">
|
|
<input type="text" placeholder="Type your message...">
|
|
<button>Send</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="assets/js/main.js"></script>
|
|
</body>
|
|
</html>
|