feat: add landing page with nuxt

This commit is contained in:
Maulana Sodiqin
2025-04-07 19:10:29 +07:00
parent c907c696f5
commit ce115f63e4
21 changed files with 11839 additions and 509 deletions
+16
View File
@@ -0,0 +1,16 @@
<template>
<div class="about">
<h1>This is an about page.</h1>
</div>
</template>
<style>
@media (min-width: 768px) {
.about {
max-width: 768px;
margin-left: auto;
margin-right: auto;
padding: 0 1rem;
}
}
</style>
+3
View File
@@ -0,0 +1,3 @@
<template>
<NxWelcome title="landing" />
</template>