34434-vm/index.php
Flatlogic Bot 51699f43c2 Friend1.0
2025-09-27 11:05:52 +00:00

61 lines
1.9 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Companion - Your AI Friend</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
background-color: #F5F3FF;
font-family: 'Poppins', sans-serif;
color: #1E1E1E;
}
.hero {
background-image: url('https://picsum.photos/seed/companion-hero/1600/900');
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
}
.hero-content {
background-color: rgba(0, 0, 0, 0.5);
padding: 40px;
border-radius: 12px;
}
.hero h1 {
font-size: 4rem;
font-weight: 600;
}
.hero p {
font-size: 1.5rem;
margin-bottom: 30px;
}
.btn-primary {
background-color: #7C5BFF;
border-color: #7C5BFF;
padding: 15px 30px;
font-size: 1.2rem;
border-radius: 12px;
}
.btn-primary:hover {
background-color: #A28BFF;
border-color: #A28BFF;
}
</style>
</head>
<body>
<div class="hero">
<div class="hero-content">
<h1>Welcome to Companion</h1>
<p>Your personal AI friend to help you through moments of loneliness.</p>
<a href="/chat.php" class="btn btn-primary">Start Chatting</a>
</div>
</div>
</body>
</html>