wg-ocp-frontend notus-svelte

This commit is contained in:
infidel
2022-11-18 19:41:03 +07:00
commit dbf9049c48
81 changed files with 23274 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<script>
// core components
import CardSettings from "components/Cards/CardSettings.svelte";
import CardProfile from "components/Cards/CardProfile.svelte";
export let location;
</script>
<div class="flex flex-wrap">
<div class="w-full lg:w-8/12 px-4">
<CardSettings />
</div>
<div class="w-full lg:w-4/12 px-4">
<CardProfile />
</div>
</div>