11 lines
293 B
Plaintext
11 lines
293 B
Plaintext
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
import Menu from "../components/Menu.astro";
|
|
import Premium from "../components/Premium.vue";
|
|
import Footer from "../components/Footer.vue";
|
|
---
|
|
<Layout title="">
|
|
<Menu/>
|
|
<Premium client:visible/>
|
|
<Footer client:visible/>
|
|
</Layout> |