Code for https://gm112.neocities.org/ gm112.neocities.org/

chore: markup cleanup

+3 -3
+1 -1
app/components/post/detail.vue
··· 3 3 <ui-widget class="border-0 border-alttp"> 4 4 <template #header> 5 5 <section class="p-2 mx-2"> 6 - <h1 class="text-3xl"> 6 + <h1 class="text-[32px]"> 7 7 {{ page.title }} 8 8 </h1> 9 9 <h2 v-if="!!page.description" class="text-sm py-2">
+2 -2
app/pages/[...slug].vue
··· 1 1 <template> 2 2 <!-- <post-toc :page="page" color="neutral" class="p-2 sm:pl-4" /> --> 3 - <u-container> 3 + <div> 4 4 <post-detail 5 5 v-if="page" 6 6 :page="page" ··· 17 17 <u-content-surround :surround="surroundings" class="border-alttp bg-black" /> 18 18 </post-detail> 19 19 <u-skeleton v-else class="flex-1" /> 20 - </u-container> 20 + </div> 21 21 </template> 22 22 23 23 <script setup lang="ts">