[READ-ONLY] Mirror of https://github.com/danielroe/firstcommit.is. Find your first open-source commit on GitHub firstcommit.is
api commit github nuxt oauth
0

Configure Feed

Select the types of activity you want to include in your feed.

firstcommit.is / app.vue
869 B 39 lines
1<script setup lang="ts"> 2useServerSeoMeta({ 3 ogSiteName: 'firstcommit.is', 4 twitterSite: '@danielcroe', 5}) 6useServerHead({ 7 htmlAttrs: { 8 lang: 'en', 9 } 10}) 11</script> 12 13<template> 14 <div class="min-h-[100svh] flex flex-col justify-stretch"> 15 <NuxtPage /> 16 <footer class="mt-auto p-2 text-center text-sm opacity-75 hover:opacity-100"> 17 <a 18 class="hover:underline" 19 href="https://github.com/danielroe/firstcommit.is" 20 > 21 source 22 </a> 23 &middot; 24 made with by <a 25 class="font-semibold hover:underline" 26 href="https://bsky.app/profile/danielroe.dev" 27 > 28 @danielroe.dev 29 </a> 30 &middot; 31 inspiration <a 32 class="font-semibold hover:underline" 33 href="https://x.com/aleksandrasays" 34 > 35 @aleksandrasays 36 </a> 37 </footer> 38 </div> 39</template>