-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-home.php
37 lines (32 loc) · 1.19 KB
/
page-home.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
<?php get_header(); ?>
<main id="main-content">
<header id="retro-game-header">
<div id="stacked-nerd-title" class="glowing-text">Stacked Nerd</div>
<img src="https://suzyeaston.ca/wp-content/uploads/2024/03/suzy2.jpeg" alt="Suzy Easton" class="animated-image">
</header>
<section id="menu-container">
<div class="menu-item" onclick="location.href='/home'">Home</div>
<div class="menu-item" onclick="location.href='/bio'">About</div>
<div class="menu-item" onclick="location.href='/the-midnight-mix'">Midnight Mix with Suzy Easton</div>
<div class="menu-item" onclick="location.href='/music-releases'">Music Releases</div>
<div class="menu-item" onclick="location.href='/social-media'">Social Media</div>
<div class="menu-item" onclick="location.href='/contact'">Contact</div>
</section>
</main>
<style>
.glowing-text {
text-shadow: none;
}
.animated-image {
width: 200px;
height: auto;
display: block;
margin: 20px auto;
animation: float 2s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
</style>
<?php get_footer(); ?>