-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
62 lines (54 loc) · 1.77 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css" rel="stylesheet">
<style>
body {
background-color: #f8f9fa;
}
.container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.btn-container {
text-align: center;
}
.btn-lg {
font-size: 1.5rem;
padding: 15px 30px;
margin: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
</style>
<title>AI Bot by Hassaan</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="btn-container">
<h1 class="mb-4">Welcome to AI Bot</h1>
<p class="lead">Explore the features by clicking the buttons below</p>
<button class="btn btn-primary btn-lg" onclick="navigateTo('ai-text-bot.php')">
<i class="bi bi-robot"></i> AI Text Bot
</button>
<button class="btn btn-success btn-lg" onclick="navigateTo('ai-image-generator.php')">
<i class="bi bi-file-image-fill"></i> AI Image Generator
</button>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script>
function navigateTo(page) {
window.location.href = page;
}
</script>
</body>
</html>