-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
163 lines (152 loc) · 5.54 KB
/
Copy pathindex.html
File metadata and controls
163 lines (152 loc) · 5.54 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TRYB3</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<nav class="navbar">
<div class="nav-content">
<div class="logo">
<a href="#"><img src="images/Trybe_logo.png" alt="Trybe Logo" /></a>
</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#games">Games</a></li>
<li><a href="#team">Team</a></li>
</ul>
<div class="contact-button">
<a href="#contact">Contact Us</a>
</div>
</div>
</nav>
<header class="hero-section" id="home">
<div class="hero-image-wrapper">
<img
class="hero-image"
src="images/ghostmw3.jpg"
alt="Hero Image"
/>
</div>
<div class="hero-content">
<h1 class="hero-title">Ìjáyà</h1>
<p class="hero-subtitle">
Experience the next generation of African storytelling in gaming.
</p>
<a href="#view-more" class="hero-button">View More</a>
</div>
</header>
<section class="about-section section" id="about">
<div class="container">
<hr class="section-divider" />
<h2 class="section-title"><span class="highlight">About</span> TRYB3</h2>
<p class="about-text">
TRYB3 is proud to be Africa's first AA game studio, shaping the future
of storytelling across the continent. We believe African stories
deserve to be told in bold, modern, and unforgettable ways.
</p>
</div>
</section>
<hr class="section-divider" />
<section class="upcoming-section section" id="games">
<div class="container">
<div class="upcoming-text">
<h2 class="section-title">
<span class="highlight">Blogs</span> / News
</h2>
<p class="about-text">
Stay tuned for the latest updates on our upcoming game projects,
teasers, and trailers!
</p>
</div>
<div class="upcoming-image-wrapper">
<img
src="images/blogimg.jpg"
alt="Upcoming Game"
class="upcoming-image"
/>
</div>
</div>
</section>
<hr class="section-divider" />
<section class="team-section section" id="team">
<div class="container">
<h2 class="section-title"><span class="highlight">Our</span> Team</h2>
<p class="about-text">Meet the passionate individuals behind TRYB3.</p>
</div>
</section>
<hr class="section-divider" />
<section class="contact-section section" id="contact">
<div class="container">
<h2 class="section-title"><span class="highlight">Contact</span> Us</h2>
<p>We'd love to hear from you!</p>
</div>
</section>
<footer class="site-footer">
<div class="container">
<div class="footer-top">
<div class="footer-logo">
<img src="images/Trybe_logo.png" alt="TRYB3 Logo" />
<p>
TRYB3: Shaping the future of African storytelling through bold and
unforgettable games.
</p>
</div>
<div class="footer-links-column">
<h3>Quick Links</h3>
<ul class="footer-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#games">Games</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#blogs">Blogs</a></li>
<li><a href="#upcoming">Upcoming</a></li>
</ul>
</div>
<div class="footer-links-column">
<h3>Support</h3>
<ul class="footer-links">
<li><a href="#support">Support Us</a></li>
<li><a href="#terms">Terms & Use</a></li>
<li><a href="#privacy">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-community">
<h3>Join Our <span class="highlight">Community</span></h3>
<div class="footer-icons">
<a href="#" target="_blank" rel="noopener noreferrer"
><i class="fa-brands fa-instagram"></i
></a>
<a href="#" target="_blank" rel="noopener noreferrer"
><i class="fa-brands fa-twitter"></i
></a>
<a href="#" target="_blank" rel="noopener noreferrer"
><i class="fa-brands fa-youtube"></i
></a>
<a href="#" target="_blank" rel="noopener noreferrer"
><i class="fa-brands fa-discord"></i
></a>
</div>
</div>
</div>
<hr class="footer-divider" />
<p class="footer-bottom">© 2025 TRYB3. All rights reserved.</p>
</div>
</footer>
<script src="scrollreveal.min.js"></script>
<script src="script.js"></script>
</body>
</html>