forked from
danielroe.dev/synchub.to
mirror your GitHub repos to tangled.org automatically
498 B
22 lines
1<script setup lang="ts">
2const ogImage = 'https://synchub.to/og.png'
3
4useSeoMeta({
5 title: 'synchub.to',
6 description: 'Mirror your GitHub repos to tangled.org, automatically.',
7 ogTitle: 'synchub.to',
8 ogDescription: 'Mirror your public GitHub repos to tangled.org, automatically.',
9 ogImage,
10 ogImageWidth: 1200,
11 ogImageHeight: 630,
12 ogType: 'website',
13 twitterCard: 'summary_large_image',
14 twitterImage: ogImage,
15})
16</script>
17
18<template>
19 <div>
20 <NuxtPage />
21 </div>
22</template>