43 lines
1.8 KiB
PHP
43 lines
1.8 KiB
PHP
<?php include 'header.php'; ?>
|
|
|
|
<main class="container my-5">
|
|
<div class="row align-items-center">
|
|
<div class="col-md-6">
|
|
<h1 class="display-4 fw-bold">Connect Privately.</h1>
|
|
<p class="lead text-muted">A simple, secure, and real-time messaging platform for personal conversations. Your space to talk, without the noise.</p>
|
|
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
|
|
<a href="signup.php" class="btn btn-primary btn-lg px-4 me-md-2">Get Started</a>
|
|
<a href="login.php" class="btn btn-outline-secondary btn-lg px-4">Sign In</a>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6 text-center">
|
|
<i class="bi bi-shield-lock-fill" style="font-size: 12rem; color: #0D6EFD;"></i>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row text-center g-4 py-5 mt-5">
|
|
<div class="col-lg-4">
|
|
<div class="feature-icon mb-3">
|
|
<i class="bi bi-person-badge"></i>
|
|
</div>
|
|
<h2 class="fw-normal">User Profiles</h2>
|
|
<p>Create your profile, set your display name, and connect with others.</p>
|
|
</div>
|
|
<div class="col-lg-4">
|
|
<div class="feature-icon mb-3">
|
|
<i class="bi bi-chat-dots"></i>
|
|
</div>
|
|
<h2 class="fw-normal">Direct Messaging</h2>
|
|
<p>Start one-on-one conversations with any other registered user on the platform.</p>
|
|
</div>
|
|
<div class="col-lg-4">
|
|
<div class="feature-icon mb-3">
|
|
<i class="bi bi-broadcast"></i>
|
|
</div>
|
|
<h2 class="fw-normal">Real-Time Chat</h2>
|
|
<p>Experience live messaging with WebSocket technology for instant communication.</p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<?php include 'footer.php'; ?>
|