-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (103 loc) · 4.66 KB
/
index.html
File metadata and controls
111 lines (103 loc) · 4.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CHERRI</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Loading Overlay -->
<div id="loadingOverlay" class="loading-overlay">
<div class="loading-content">
<h1 class="loading-title">CHERRI</h1>
<div class="loading-cherry">
<svg viewBox="0 0 110 120" width="90" height="90" xmlns="http://www.w3.org/2000/svg">
<!-- Curved stem to left cherry -->
<path d="M50 10 C46 25, 32 40, 38 55 C42 65, 36 75, 35 82" fill="none" stroke="#3d6b35" stroke-width="3" stroke-linecap="round"/>
<!-- Curved stem to right cherry -->
<path d="M50 10 C58 22, 72 30, 68 45 C65 55, 72 60, 75 68" fill="none" stroke="#3d6b35" stroke-width="3" stroke-linecap="round"/>
<!-- Leaf pointing up-right -->
<path d="M50 10 C57 3, 73 -2, 83 5 C85 12, 70 16, 50 10Z" fill="#4a8b3f"/>
<!-- Left cherry (lower) -->
<circle cx="35" cy="98" r="18" fill="#c41e3a"/>
<ellipse cx="29" cy="92" rx="6" ry="4" fill="rgba(255,255,255,0.2)" transform="rotate(-35 29 92)"/>
<!-- Right cherry (higher) -->
<circle cx="75" cy="82" r="16" fill="#d4263d"/>
<ellipse cx="69" cy="77" rx="5" ry="3.5" fill="rgba(255,255,255,0.2)" transform="rotate(-35 69 77)"/>
</svg>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="site-nav">
<a class="nav-logo" href="index.html">CHERRI</a>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="listen.html">Listen</a></li>
<!-- <li><a href="watch.html">Watch Now</a></li> -->
<li><a href="shows.html">Shows</a></li>
<!-- <li><a href="#" target="_blank">Shop</a></li> -->
</ul>
<button class="nav-hamburger" id="navHamburger" aria-label="Menu">
<span></span>
<span></span>
<span></span>
</button>
</nav>
<!-- Mobile Nav -->
<div class="mobile-nav" id="mobileNav">
<a href="index.html">Home</a>
<a href="listen.html">Listen</a>
<!-- <a href="watch.html">Watch Now</a> -->
<a href="shows.html">Shows</a>
<!-- <a href="#" target="_blank">Shop</a> -->
</div>
<!-- Hero / Latest Release -->
<section class="hero">
<p class="hero-subtitle">Latest Release</p>
<h1 class="hero-title">CHERRI</h1>
<img class="hero-artwork" src="https://placehold.co/600x600/1a1a1a/f5f0eb?text=Album+Art" alt="Latest Release Artwork">
<a class="hero-cta" href="#" target="_blank">Listen Now</a>
</section>
<!-- Latest Video -->
<section class="section">
<h2 class="section-title">Latest Video</h2>
<div class="video-embed">
<iframe id="home-video" src="" title="Latest Video"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</div>
<div style="text-align:center; margin-top:16px;">
<a href="watch.html" class="hero-cta" style="font-size:0.8rem; padding:10px 32px;">Watch More</a>
</div>
</section>
<!-- Top Songs -->
<section class="section">
<h2 class="section-title">Top Songs</h2>
<div class="spotify-section">
<iframe style="border-radius:12px"
src="https://open.spotify.com/embed/artist/0mDwdgreP6g5GfIZf0KYL7?utm_source=generator&theme=0"
width="100%" height="352" frameBorder="0"
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"
loading="lazy"></iframe>
</div>
</section>
<!-- Footer -->
<footer class="site-footer">
<div class="footer-social">
<a href="https://www.instagram.com/frozencherrii/" target="_blank" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://www.tiktok.com/@frozencherri?is_from_webapp=1&sender_device=pc" target="_blank" aria-label="TikTok"><i class="fab fa-tiktok"></i></a>
<a href="https://www.youtube.com/@CHERRImusicofficial" target="_blank" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
<a href="https://open.spotify.com/artist/0mDwdgreP6g5GfIZf0KYL7?si=VYFbIjVWT3KN21sfSlJcxA" target="_blank" aria-label="Spotify"><i class="fab fa-spotify"></i></a>
</div>
<p class="footer-text">© 2026 CHERRI</p>
<div class="footer-email">
<a href="mailto:cherribooking@gmail.com">cherribooking@gmail.com</a>
</div>
</footer>
<script src="js/main.js"></script>
<script src="js/videos.js"></script>
</body>
</html>