mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-11-18 17:47:54 +01:00
48 lines
702 B
Vue
48 lines
702 B
Vue
<script setup>
|
|
import Home from './components/Home.vue'
|
|
import ThreeColumnLayout from "./layouts/ThreeColumnLayout.vue";
|
|
import Nip07 from "@/components/Nip07.vue";
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Noogle Search" />
|
|
|
|
|
|
<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>
|