feat: Future music page.
This commit is contained in:
parent
81b497517e
commit
66d6e6b31c
11
app/music/page.tsx
Normal file
11
app/music/page.tsx
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
export default function Page() {
|
||||||
|
return (
|
||||||
|
<div style={{ padding: '20px', textAlign: 'center' }}>
|
||||||
|
<h1 style={{ fontSize: '42px' }}>Music Stream</h1>
|
||||||
|
<p>This is still a work in progress. Stay tuned for updates!</p>
|
||||||
|
<button style={{ marginTop: '20px', padding: '10px 20px', fontSize: '16px' }}>
|
||||||
|
<a href="https://discord.com/channels/1375797466066325596/1461402729661464576">Click here to find more!</a>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@ -28,7 +28,7 @@ export default function Navbar() {
|
|||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
{/* Nav Links */}
|
{/* Nav Links */}
|
||||||
<div className="flex items-center space-x-1">
|
<div className="flex items-center space-x-0">
|
||||||
<Link
|
<Link
|
||||||
href="/"
|
href="/"
|
||||||
className={`px-4 py-2 text-sm font-medium transition-colors ${
|
className={`px-4 py-2 text-sm font-medium transition-colors ${
|
||||||
@ -79,6 +79,16 @@ export default function Navbar() {
|
|||||||
>
|
>
|
||||||
LIVE
|
LIVE
|
||||||
</Link>
|
</Link>
|
||||||
|
<Link
|
||||||
|
href="/music"
|
||||||
|
className={`px-4 py-2 text-sm font-medium transition-colors ${
|
||||||
|
isActive('/about')
|
||||||
|
? 'text-white border-b-2 border-white'
|
||||||
|
: 'text-white/50 hover:text-white'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
MUSIC
|
||||||
|
</Link>
|
||||||
<a
|
<a
|
||||||
href="https://discord.gg/nvuB8EvT9P"
|
href="https://discord.gg/nvuB8EvT9P"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user