Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
断念したastro移行作業で得た知見を基にオーバーホール
まだ正常に動作しません
  • Loading branch information
Liry24 committed Sep 26, 2024
1 parent b5e8af0 commit 46553d4
Show file tree
Hide file tree
Showing 30 changed files with 18,776 additions and 22,792 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ logs
.env
.env.*
!.env.example
env.d.ts

.yarn
.vercel
34 changes: 11 additions & 23 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,31 +27,19 @@ try {

<template>
<div v-if="!isMaintenance" class="size-full">
<UContainer
class="flex flex-col gap-10"
:ui="{ padding: 'px-8 pt-6 sm:px-20 lg:px-20' }"
>
<AHeader />
<UContainer class="flex flex-col gap-10" :ui="{ padding: 'px-8 pt-6 sm:px-20 lg:px-20' }">
<UiHeader />
<NuxtPage />
<AFooter />
<UiFooter />
</UContainer>
<UButton
size="xl"
icon="lucide:lightbulb"
label="フィードバック"
:ui="{ rounded: 'rounded-full' }"
class="fixed bottom-6 right-6 pr-[18px]"
@click="modal_feedback = true"
/>
<UModal
v-model="modal_feedback"
:ui="{
background: 'bg-white dark:bg-neutral-800',
ring: 'ring-0',
rounded: 'rounded-xl',
overlay: { background: 'backdrop-blur-sm' },
}"
>
<UButton size="xl" icon="lucide:lightbulb" label="フィードバック" :ui="{ rounded: 'rounded-full' }"
class="fixed bottom-6 right-6 pr-[18px]" @click="modal_feedback = true" />
<UModal v-model="modal_feedback" :ui="{
background: 'bg-white dark:bg-neutral-800',
ring: 'ring-0',
rounded: 'rounded-xl',
overlay: { background: 'backdrop-blur-sm' },
}">
<ModalFeedback />
</UModal>
<UNotifications />
Expand Down
54 changes: 0 additions & 54 deletions components/AButton.vue

This file was deleted.

101 changes: 0 additions & 101 deletions components/AFooter.vue

This file was deleted.

141 changes: 0 additions & 141 deletions components/AHeader.vue

This file was deleted.

Loading

0 comments on commit 46553d4

Please sign in to comment.