35 lines
963 B
Plaintext
35 lines
963 B
Plaintext
---
|
|
import Layout from "../../layouts/Layout.astro"
|
|
import Header from "../../components/Header.astro"
|
|
import MainMenu from "../../components/MainMenu.astro"
|
|
import Footer from "../../components/Footer.astro"
|
|
import NoticeIDPage from "../../components/NoticeIDPage.vue"
|
|
|
|
|
|
---
|
|
<Layout title="">
|
|
<Header />
|
|
<MainMenu />
|
|
<NoticeIDPage client:visible />
|
|
<!-- <main>
|
|
<div class="container bg-white mx-auto mt-3 p-4">
|
|
<div>
|
|
</div>
|
|
<div>
|
|
</ul>
|
|
<h2 class="text-center t-8">{data.data[idx].title}</h2>
|
|
<div></div>
|
|
<div >
|
|
<div>
|
|
<div class="flex flex-col place-items-center justify-center" set:html={data.data[idx].content}></div>
|
|
<a href=""></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main> -->
|
|
<Footer />
|
|
</Layout>
|
|
|
|
|
|
|