-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: tailwind, nuxt ui and guardhouse scaffolding
- Loading branch information
Showing
10 changed files
with
1,126 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default defineAppConfig({ | ||
ui: { | ||
gray: 'stone', | ||
primary: 'red', | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<script setup lang="ts"> | ||
import { f7AccordionContent, f7App, f7Block, f7BlockTitle, f7Button, f7List, f7ListItem, f7Navbar, f7Page, f7SkeletonBlock, f7View } from 'framework7-vue' | ||
Check failure on line 2 in pages/guard/[...slug].vue GitHub Actions / ci
Check failure on line 2 in pages/guard/[...slug].vue GitHub Actions / ci
Check failure on line 2 in pages/guard/[...slug].vue GitHub Actions / ci
Check failure on line 2 in pages/guard/[...slug].vue GitHub Actions / ci
Check failure on line 2 in pages/guard/[...slug].vue GitHub Actions / ci
Check failure on line 2 in pages/guard/[...slug].vue GitHub Actions / ci
|
||
import 'framework7/css/bundle' | ||
import 'framework7-icons/css/framework7-icons.css' | ||
import 'material-icons/iconfont/material-icons.css' | ||
// @ts-expect-error Missing types | ||
import Framework7 from 'framework7/lite-bundle' | ||
// @ts-expect-error Missing types | ||
import Framework7Vue from 'framework7-vue/bundle' | ||
Framework7.use(Framework7Vue) | ||
const dark = useDark() | ||
const route = useRoute() | ||
</script> | ||
|
||
<template> | ||
<f7App name="SSTAA Guard House Check Point" theme="md" :dark-mode="dark"> | ||
<f7View | ||
main | ||
class="safe-areas" | ||
:url="route.path" | ||
:master-detail-breakpoint="768" | ||
ios-swipe-back | ||
preload-previous-page | ||
> | ||
<f7Page> | ||
<f7Navbar title="SSTAA Guard House Check Point" /> | ||
</f7Page> | ||
</f7View> | ||
</f7App> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
<script setup lang="ts"> | ||
import 'tailwindcss/src/css/preflight.css' | ||
</script> | ||
|
||
<template> | ||
<div> | ||
Imagine a landing page here! | ||
<header class="border-b border-b-gray-200 dark:border-b-gray-800 p-3"> | ||
<div class="container mx-auto"> | ||
<span class="font-semibold">SSTAA</span> | ||
</div> | ||
</header> | ||
|
||
<div class="p-3"> | ||
<div class="container mx-auto flex flex-col gap-3"> | ||
<UButton to="/app" :prefetch="false"> | ||
Open SSTAA App | ||
</UButton> | ||
<UButton to="/admin" :prefetch="false"> | ||
Open SSTAA Admin Portal | ||
</UButton> | ||
<UButton to="/guard" :prefetch="false"> | ||
Open SSTAA Guard House Portal | ||
</UButton> | ||
</div> | ||
</div> | ||
</div> | ||
</template> |
Oops, something went wrong.