14 lines
344 B
Plaintext
14 lines
344 B
Plaintext
---
|
|
import SinglePage from "../layouts/SinglePage.astro";
|
|
import { ShowcaseTabs } from "./ShowcaseTabs.jsx";
|
|
|
|
import { dictionary } from "../i18n/dictionary";
|
|
const { title, description } = dictionary[Astro.currentLocale];
|
|
---
|
|
|
|
<SinglePage>
|
|
<div class="flex flex-col h-screen">
|
|
<ShowcaseTabs client:load />
|
|
</div>
|
|
</SinglePage>
|