mirror of
https://github.com/cupcakearmy/nicco.io.git
synced 2025-04-13 21:12:58 +00:00
37 lines
853 B
Svelte
37 lines
853 B
Svelte
<script lang="ts" context="module">
|
|
export const prerender = true
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import IconList from '$lib/components/IconList.svelte'
|
|
import SimplePage from '$lib/components/SimplePage.svelte'
|
|
|
|
const links = [
|
|
{
|
|
href: 'mailto:hi@nicco.io',
|
|
name: 'Say hi@nicco.io',
|
|
icon: 'mail-outline',
|
|
},
|
|
{
|
|
href: 'https://discord.gg/wS7RpYTYd2',
|
|
name: 'Chat on Discord',
|
|
icon: 'chatbubbles-outline',
|
|
},
|
|
{
|
|
href: 'https://github.com/cupcakearmy',
|
|
name: 'Github',
|
|
icon: 'logo-github',
|
|
},
|
|
{ href: '/privacy', name: 'Privacy Policy', icon: 'finger-print-outline' },
|
|
{ href: '/support', name: 'Support', icon: 'heart-sharp' },
|
|
]
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Contact</title>
|
|
</svelte:head>
|
|
|
|
<SimplePage title="Contact">
|
|
<IconList {links} />
|
|
</SimplePage>
|