Updated and added pages

This commit is contained in:
2024-10-09 01:40:36 +09:00
parent 780905fb4e
commit 545ac73e0e
37 changed files with 1552 additions and 291 deletions

34
components/QAndABox.vue Normal file
View File

@@ -0,0 +1,34 @@
<script setup lang="ts">
import type { QAndABoxProperty } from "~/utils/qAndABox";
const property = defineProps<QAndABoxProperty>();
</script>
<template>
<div class="q-and-a">
<h2>{{ property.question }}</h2>
<div>
<slot></slot>
</div>
</div>
</template>
<style scoped>
.q-and-a {
max-width: 1105px;
width: 80vw;
}
.q-and-a > h2 {
color: var(--deep-space);
background-color: var(--starlight1);
border-radius: 1rem;
font-weight: 600;
line-height: 2;
padding-inline: 1.5rem;
}
.q-and-a > div {
width: 90%;
margin-inline: 3rem;
}
</style>