-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile-app.html
More file actions
89 lines (85 loc) · 3.93 KB
/
mobile-app.html
File metadata and controls
89 lines (85 loc) · 3.93 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mobile App - Jai Sports</title>
<link rel="stylesheet" href="styles.css" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Inter:wght@400;600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h2 style="font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.2rem; letter-spacing: 2px; color: #fff;">Jai Sports</h2>
<nav>
<ul>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#mobile-app">Mobile App</a></li>
</ul>
</nav>
</header>
<section class="hero-modern" style="background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80');">
<div class="hero-overlay"></div>
<div class="hero-content">
<h1>Jai Sports Mobile App</h1>
<p class="hero-tagline">Your sports business, in your pocket. Manage inventory, orders, and insights on the go.</p>
</div>
</section>
<main>
<section class="modern-section fade-in">
<h2><i class="fas fa-bolt"></i> Key Features</h2>
<div class="modern-grid">
<div class="modern-card">
<i class="fas fa-bolt" style="font-size:2.5rem;color:var(--accent);"></i>
<h3>Real-Time Inventory</h3>
<p>Track your stock and orders instantly, anytime, anywhere.</p>
</div>
<div class="modern-card">
<i class="fas fa-lock" style="font-size:2.5rem;color:var(--accent);"></i>
<h3>Secure Transactions</h3>
<p>All your data and payments are protected with industry-leading security.</p>
</div>
<div class="modern-card">
<i class="fas fa-bell" style="font-size:2.5rem;color:var(--accent);"></i>
<h3>Instant Notifications</h3>
<p>Get alerts for new orders, low stock, and important updates.</p>
</div>
<div class="modern-card">
<i class="fas fa-chart-line" style="font-size:2.5rem;color:var(--accent);"></i>
<h3>Analytics & Insights</h3>
<p>Visualize your sales, trends, and performance with easy-to-read dashboards.</p>
</div>
<div class="modern-card">
<i class="fas fa-users" style="font-size:2.5rem;color:var(--accent);"></i>
<h3>Community & Support</h3>
<p>Connect with other partners and get help from our support team, right in the app.</p>
</div>
<div class="modern-card">
<i class="fas fa-mobile-alt" style="font-size:2.5rem;color:var(--accent);"></i>
<h3>User-Friendly Design</h3>
<p>Intuitive, modern interface for fast, easy management on any device.</p>
</div>
</div>
</section>
<section class="modern-section fade-in">
<h2><i class="fas fa-star"></i> Why Use Our Mobile App?</h2>
<ul class="feature-list">
<li><i class="fas fa-check-circle"></i> Save time with automated order and inventory management</li>
<li><i class="fas fa-check-circle"></i> Make smarter decisions with real-time analytics</li>
<li><i class="fas fa-check-circle"></i> Stay connected and in control, wherever you are</li>
<li><i class="fas fa-check-circle"></i> Enjoy peace of mind with secure, reliable technology</li>
</ul>
<a href="index.html#mobile-app" class="modern-btn">Back to Home</a>
</section>
</main>
<footer class="modern-footer">
<p>© 2025 Jai Sports. All rights reserved.</p>
<div class="footer-social">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-x-twitter"></i></a>
</div>
<p>Contact: <a href="mailto:info@jaisports.in">info@jaisports.in</a></p>
</footer>
</body>
</html>