-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
49 lines (44 loc) · 1.78 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
<?php include 'includes/header.php'; ?>
<div class="hero-section">
<div class="hero-content">
<h1>Welcome to the Gym Membership System</h1>
<p>Your fitness journey starts here. Join us today and achieve your health and wellness goals!</p>
<a href="auth/register.php" class="btn-primary">Join Now</a>
<a href="auth/login.php" class="btn-secondary">Member Login</a>
</div>
</div>
<div class="about-section">
<h2>About Us</h2>
<p>
We are dedicated to providing a comprehensive fitness experience for our members.
Our mission is to make health and wellness accessible to everyone through
exceptional facilities, professional guidance, and a supportive community.
</p>
</div>
<div class="features-section">
<h2>Why Choose Us?</h2>
<div class="features">
<div class="feature-card">
<i class="fas fa-dumbbell"></i>
<h3>State-of-the-Art Equipment</h3>
<p>Experience top-notch gym equipment and facilities to help you stay fit.</p>
</div>
<div class="feature-card">
<i class="fas fa-user"></i>
<h3>Personal Trainers</h3>
<p>Get personalized training plans with the guidance of professional trainers.</p>
</div>
<div class="feature-card">
<i class="fas fa-heartbeat"></i>
<h3>Health Monitoring</h3>
<p>Track your progress with our integrated health monitoring system.</p>
</div>
</div>
</div>
<!-- Scroll Up Button -->
<button id="scrollUpBtn" title="Go to top">
<i class="fas fa-chevron-up"></i> <!-- Font Awesome icon -->
</button>
<script src="js/scrollUpButton.js"></script>
<script src="js/main.js"></script> <!-- External JavaScript -->
<?php include 'includes/footer.php'; ?>