mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-29 18:08:28 +00:00
17 lines
380 B
Svelte
17 lines
380 B
Svelte
<script>
|
|
import MeowbaltLoaf from "$components/meowbalt/MeowbaltLoaf.svelte";
|
|
export let pageName;
|
|
</script>
|
|
|
|
<div id="placeholder-container" class="center-column-container">
|
|
<MeowbaltLoaf />
|
|
<div>{pageName} page is not ready yet!</div>
|
|
</div>
|
|
|
|
<style>
|
|
#placeholder-container {
|
|
gap: calc(var(--padding) * 2);
|
|
text-align: center;
|
|
}
|
|
</style>
|