SE Update
This commit is contained in:
		
							parent
							
								
									1fe1bef1a9
								
							
						
					
					
						commit
						7bccb74d0e
					
				
					 5 changed files with 14 additions and 11 deletions
				
			
		| 
						 | 
					@ -4,10 +4,10 @@ const Head = ({ redirect }: { redirect?: { url: string, site: string } }) => {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return (
 | 
					    return (
 | 
				
			||||||
        <NextHead>
 | 
					        <NextHead>
 | 
				
			||||||
            <link rel="icon" type="image/png" href="/assets/favicon.png" sizes="32x32" />
 | 
					            <link rel="icon" type="image/png" href="/assets/Avatar.png" sizes="32x32" />
 | 
				
			||||||
            <link rel="icon" type="image/png" href="/assets/favicon.png" sizes="96x96" />
 | 
					            <link rel="icon" type="image/png" href="/assets/Avatar.png" sizes="96x96" />
 | 
				
			||||||
            <link rel="icon" type="image/png" href="/assets/favicon.png" sizes="16x16" />
 | 
					            <link rel="icon" type="image/png" href="/assets/Avatar.png" sizes="16x16" />
 | 
				
			||||||
            <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon.png" />
 | 
					            <link rel="apple-touch-icon" sizes="180x180" href="/assets/Avatar.png" />
 | 
				
			||||||
            <title>heika.dog</title>
 | 
					            <title>heika.dog</title>
 | 
				
			||||||
            <meta name="theme-color" content="#FABD02 " />
 | 
					            <meta name="theme-color" content="#FABD02 " />
 | 
				
			||||||
            {!redirect && (
 | 
					            {!redirect && (
 | 
				
			||||||
| 
						 | 
					@ -30,7 +30,7 @@ const Head = ({ redirect }: { redirect?: { url: string, site: string } }) => {
 | 
				
			||||||
            <meta name="keywords" content="heikadog, heika, music, producer, furry" />
 | 
					            <meta name="keywords" content="heikadog, heika, music, producer, furry" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <meta name="twitter:card" content="summary" />
 | 
					            <meta name="twitter:card" content="summary" />
 | 
				
			||||||
            <meta name="twitter:image" content="https://heika.dog/assets/favicon.png" />
 | 
					            <meta name="twitter:image" content="https://heika.dog/assets/Avatar.png" />
 | 
				
			||||||
            <meta name="twitter:creator" content="@hkadogs" />
 | 
					            <meta name="twitter:creator" content="@hkadogs" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            {redirect && (
 | 
					            {redirect && (
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -10,7 +10,7 @@ const consts = {
 | 
				
			||||||
        teespring: "https://club-siberian.creator-spring.com/"
 | 
					        teespring: "https://club-siberian.creator-spring.com/"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    music: {
 | 
					    music: {
 | 
				
			||||||
        special: "https://heikadog.bandcamp.com/album/specialty-endeavors",
 | 
					        special: "https://se.heika.dog/",
 | 
				
			||||||
        sleepydogs: "https://distrokid.com/hyperfollow/heikadog/songs-for-dogs-to-sleep-to-ambient-2"
 | 
					        sleepydogs: "https://distrokid.com/hyperfollow/heikadog/songs-for-dogs-to-sleep-to-ambient-2"
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -26,8 +26,8 @@ const Index = ({ credits }) => {
 | 
				
			||||||
          i'm heika, a dog person who creates for the internet.
 | 
					          i'm heika, a dog person who creates for the internet.
 | 
				
			||||||
        </p>
 | 
					        </p>
 | 
				
			||||||
        <p className={styles.info}>
 | 
					        <p className={styles.info}>
 | 
				
			||||||
          check out my ambient album  <Link className={styles.link} href={constants.music.sleepydogs}>
 | 
					        buy or stream my album  <Link className={styles.link} href={constants.music.sleepydogs}>
 | 
				
			||||||
            <a className={styles.link}>Songs For Dogs To Sleep To</a>
 | 
					            <a className={styles.link}>SPECIALTY ENDEAVORS (REMASTERED)</a>
 | 
				
			||||||
          </Link>{" "}
 | 
					          </Link>{" "}
 | 
				
			||||||
          on all major streaming platforms
 | 
					          on all major streaming platforms
 | 
				
			||||||
        </p>
 | 
					        </p>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
@mixin hovercolor($color)
 | 
					@mixin hovercolor($color)
 | 
				
			||||||
    color: black
 | 
					    color: white
 | 
				
			||||||
    &:hover
 | 
					    &:hover
 | 
				
			||||||
        color: $color
 | 
					        color: $color
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,16 +3,19 @@
 | 
				
			||||||
body
 | 
					body
 | 
				
			||||||
    height: 100%
 | 
					    height: 100%
 | 
				
			||||||
    background-color: #111111
 | 
					    background-color: #111111
 | 
				
			||||||
 | 
					    color: white
 | 
				
			||||||
    background-size: cover
 | 
					    background-size: cover
 | 
				
			||||||
    background-position: center
 | 
					    background-position: center
 | 
				
			||||||
    background-repeat: no-repeat
 | 
					    background-repeat: no-repeat
 | 
				
			||||||
    background-image: url("/assets/website_background.png")
 | 
					 | 
				
			||||||
    height: 100vh
 | 
					    height: 100vh
 | 
				
			||||||
    width: 100%
 | 
					    width: 100%
 | 
				
			||||||
    overflow: hidden
 | 
					    overflow: hidden
 | 
				
			||||||
    font-family: "Helvetica Regular"
 | 
					    font-family: "Helvetica Regular"
 | 
				
			||||||
    padding: 0
 | 
					    padding: 0
 | 
				
			||||||
    margin: 0
 | 
					    margin: 0
 | 
				
			||||||
 | 
					    background-image: url("/assets/backgrounds/SE_Desktop.png")
 | 
				
			||||||
 | 
					    @media (max-width: 750px)
 | 
				
			||||||
 | 
					        background-image: url("/assets/backgrounds/SE_Mobile.png")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
a
 | 
					a
 | 
				
			||||||
    text-decoration: unset
 | 
					    text-decoration: unset
 | 
				
			||||||
| 
						 | 
					@ -22,4 +25,4 @@ a
 | 
				
			||||||
    // &
 | 
					    // &
 | 
				
			||||||
    &:not(#icons > )
 | 
					    &:not(#icons > )
 | 
				
			||||||
        &:hover
 | 
					        &:hover
 | 
				
			||||||
            border-bottom: solid 1px black
 | 
					            border-bottom: solid 1px white
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue