Skip to content

Commit 475a2f1

Browse files
committed
status update
1 parent ce26cba commit 475a2f1

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

client/src/App.css

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,31 @@
160160
overflow: hidden;
161161
}
162162

163+
.notification {
164+
margin-top: 5rem;
165+
background-color: cadetblue; /* Light background for contrast */
166+
padding: 5px 5px; /* Spacing inside the box */
167+
border-radius: 5px; /* Rounded corners */
168+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
169+
font-family: 'Arial', sans-serif; /* Clean font */
170+
color: white; /* Neutral text color */
171+
}
172+
173+
.notification h1 {
174+
font-size: 16px; /* Slightly larger than body text */
175+
line-height: 1.5; /* Comfortable line spacing */
176+
margin: 10px 0; /* Space between headings */
177+
}
178+
179+
.notification h1:first-of-type {
180+
font-weight: bold; /* Highlight the first heading */
181+
color: white; /* Match the accent color */
182+
}
183+
184+
.notification h1:last-of-type {
185+
font-weight: normal; /* Slightly less emphasis for subsequent text */
186+
}
187+
163188
@media (max-width: 768px) {
164189
.youtube-player {
165190
width: 81vw;

client/src/pages/MusicPage.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,14 @@ function MusicPage() {
4747
/>
4848
<link rel="canonical" href={fullURL}/>
4949
</Helmet>
50+
<div className="notification">
51+
<h1>
52+
In a few days/weeks, a new version of RomanizedMM will be released. The URL to access www.romanizedmm.com will remain the same.
53+
</h1>
54+
<h1>
55+
It is possible that you may not see us on search engines (Google, Bing) for weeks to months due to indexing. I will try my best to get this site visible as soon as possible.
56+
</h1>
57+
</div>
5058
<MusicBox song={song} />
5159
<Footer />
5260
</div>

0 commit comments

Comments
 (0)