-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
120 lines (106 loc) · 4.77 KB
/
shop.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Rhystic Study | Shop</title>
<link rel="stylesheet" href="styles.css">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3920209036805773" crossorigin="anonymous"></script>
<!-- Font Awesome for icons -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<style>
html {
scroll-behavior: smooth;
}
.hero-title {
animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
</style>
</head>
<body>
<!-- Header with Navigation Bar -->
<header>
<div class="nav-container">
<nav class="left-nav">
<img src="RhysticStudyLogo.png" alt="Rhystic Study Logo" class="logo">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="services.html" class="nav-link">Portfolio</a>
<a href="contact.html" class="nav-link">Contact</a>
</nav>
<nav class="right-nav">
<a href="shop.html" class="nav-link active">Shop</a> <!-- Active class applied here -->
<a href="cart.html" class="nav-link"><i class="fas fa-shopping-cart"></i></a>
<a href="profile.html" class="nav-link"><i class="fas fa-user"></i></a>
</nav>
</div>
</header>
<!-- Main Content -->
<main>
<!-- Header Section with Hero Banner -->
<section class="header-section">
<div class="hero-container">
<h1 class="hero-title">Shop Coming Soon!</h1>
<p class="hero-subtitle">We’re working hard on our shop. Stay tuned for exciting products and exclusive offers!</p>
<div class="scroll-indicator">
<p>In the meantime, feel free to browse our other sections or join us on Discord to stay updated!</p>
<div class="scroll-arrow">↓</div>
</div>
</div>
</section>
<!-- Coming Soon Section with Boxes -->
<section class="content-section">
<div class="content-container">
<div class="mission-vision-container">
<!-- Coming Soon Box -->
<div class="mission-vision-box">
<h3 class="mission-title">Stay Tuned!</h3>
<p>Our shop is currently under construction. We're working hard to bring you some awesome products, so stay tuned for updates.</p>
<p>In the meantime, check out our other sections or join our community on Discord to stay informed about what's coming next!</p>
</div>
<!-- Join Discord Box -->
<div class="mission-vision-box">
<h3 class="mission-title">Join the Conversation</h3>
<p>For real-time updates, support, and a great community, join our Discord server.</p>
<a href="https://discord.gg/w2vTMUYvaH" target="_blank" class="button">Join the Discord</a>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer-top">
<div class="social-icons">
<a href="https://facebook.com/RhysticStudios" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="https://www.youtube.com/@RhysticStudios" target="_blank"><i class="fab fa-youtube"></i></a>
<a href="https://discord.gg/w2vTMUYvaH" target="_blank"><i class="fab fa-discord"></i></a>
<a href="https://github.com/MilitantMom/" target="_blank"><i class="fab fa-github"></i></a>
</div>
<a href="#top" class="back-to-top">↑ Back to Top</a>
</div>
<div class="footer-bottom">
<div class="policies">
<a href="terms.html" target="_blank">Terms of Service</a>
<a href="privacy.html" target="_blank">Privacy Policy</a>
<a href="refunds.html" target="_blank">Refund Policy</a>
</div>
<div class="logo">
<img src="RhysticStudyLogo.png" alt="Rhystic Study Logo">
</div>
</div>
<div class="footer-text">
<p>© 2024 The Rhystic Study | All rights reserved.</p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>