import Image from "next/image"; import Link from "next/link"; import styles from "../styles/Index.module.sass"; import Avatar from "../public/assets/Avatar.png"; import constants from "lib/constants"; import Icon from "components/Icon"; import Head from "components/Head"; import Socials from "lib/socials"; import Credits from "components/Credits"; const Index = ({ credits }) => { let AvatarSize = 200; return ( <>

HEIKADOG

(pronounced high-cuh)

i'm heika, a dog person who creates for the internet.

buy or stream my album SPECIALTY ENDEAVORS (REMASTERED) {" "} on all major streaming platforms

or peep my production credits on spotify .

{Socials.map(social => ( ))}
); }; export async function getStaticProps() { // const ers = await fetch("https://dreamland.pogcha.mp/api/credits") // const credits = await ers.json() return { props: { credits: { url: 'shard.wtf/?ref=heikadog', name: 'DATASHARD' } } } } export default Index;