parent
733ca0f9c3
commit
a57cdd1c41
@ -0,0 +1,11 @@
|
|||||||
|
import Head from 'next/head'
|
||||||
|
|
||||||
|
export default function HeadComponent() {
|
||||||
|
return (
|
||||||
|
<section>
|
||||||
|
<Head>
|
||||||
|
<link rel="icon" href="/logo.png" />
|
||||||
|
</Head>
|
||||||
|
</section>
|
||||||
|
)
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
export default function Menu() {
|
||||||
|
return (
|
||||||
|
<section>
|
||||||
|
<style jsx>{`
|
||||||
|
div {
|
||||||
|
padding: var(--padding) 0;
|
||||||
|
display: inline-flex;
|
||||||
|
gap: var(--padding-lg);
|
||||||
|
}
|
||||||
|
`}</style>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<a href="#">Home</a>
|
||||||
|
<span>//</span>
|
||||||
|
<a href="/music">Music Feed</a>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
)
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
import Head from 'next/head'
|
||||||
|
import Image from 'next/image'
|
||||||
|
import styles from '../styles/Index.module.css'
|
||||||
|
|
||||||
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
||||||
|
import { faDiscord } from '@fortawesome/free-brands-svg-icons'
|
||||||
|
import { faTwitter } from '@fortawesome/free-brands-svg-icons'
|
||||||
|
import { faSpotify } from '@fortawesome/free-brands-svg-icons'
|
||||||
|
import { faSoundcloud } from '@fortawesome/free-brands-svg-icons'
|
||||||
|
import { faEnvelope } from '@fortawesome/free-solid-svg-icons'
|
||||||
|
|
||||||
|
export default function Music() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
After Width: | Height: | Size: 92 KiB |
Loading…
Reference in new issue