mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-11-19 13:27:24 +01:00
restructure test/gui to ui/
This commit is contained in:
45
ui/noogle/src/App.vue
Normal file
45
ui/noogle/src/App.vue
Normal 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>
|
||||
Reference in New Issue
Block a user