nicco.io/src/routes/contact.svelte

33 lines
774 B
Svelte
Raw Normal View History

2021-08-02 09:53:08 +02:00
<script lang="ts">
import IconList from '$lib/components/IconList.svelte'
import SimplePage from '$lib/components/SimplePage.svelte'
2020-07-27 12:36:55 +02:00
const links = [
2021-03-06 23:10:17 +01:00
{
href: 'mailto:hi@nicco.io',
name: 'Say hi@nicco.io',
2021-04-21 13:31:33 +02:00
icon: 'mail-outline',
},
{
href: 'https://discord.gg/wS7RpYTYd2',
name: 'Chat on Discord',
2021-03-06 23:10:17 +01:00
icon: 'chatbubbles-outline',
},
{
href: 'https://github.com/cupcakearmy',
name: 'Github',
icon: 'logo-github',
},
2020-07-27 12:36:55 +02:00
{ href: '/privacy', name: 'Privacy Policy', icon: 'finger-print-outline' },
2021-04-06 16:30:09 +02:00
{ href: '/support', name: 'Support', icon: 'heart-sharp' },
2020-07-27 12:36:55 +02:00
]
2020-07-24 11:10:01 +02:00
</script>
2021-03-06 23:10:17 +01:00
<svelte:head>
<title>Contact</title>
</svelte:head>
<SimplePage title="Contact">
2021-03-09 15:37:35 +01:00
<IconList {links} />
2021-03-06 23:10:17 +01:00
</SimplePage>