restructure test/gui to ui/

This commit is contained in:
Believethehype
2024-01-26 12:09:35 +01:00
parent 7adf478a4c
commit f0ebf1dc03
43 changed files with 350 additions and 4 deletions

45
ui/noogle/src/App.vue Normal file
View File

@@ -0,0 +1,45 @@
<script setup>
import Home from './components/Home.vue'
import ThreeColumnLayout from "./layouts/ThreeColumnLayout.vue";
import Nip07 from "@/components/Nip07.vue";
</script>
<template>
<main>
<ThreeColumnLayout>
<template #aside>
</template>
</ThreeColumnLayout>
</main>
</template>
<style>
header {
line-height: 1.5;
}
@media (min-width: 768px) {
header {
display: flex;
place-items: center;
}
.logo {
margin: 0 2rem 0 0;
}
header .wrapper {
display: flex;
place-items: flex-start;
flex-wrap: wrap;
}
}
</style>