Skip to content

Commit

Permalink
chore(skeleton): base screen component
Browse files Browse the repository at this point in the history
  • Loading branch information
hywax committed Dec 24, 2023
1 parent 4dc6321 commit 366fdce
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div>
<NuxtWelcome />
<NuxtPage />
</div>
</template>
20 changes: 20 additions & 0 deletions pages/[...screen].vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<template>
<div class="min-h-screen">
<div class="max-w-screen-2xl mx-auto xl:flex-row">
<ServiceGroup title="Services" :items="items" />
<ServiceGroup title="Services" :items="items" />
</div>
</div>
</template>

<script setup lang="ts">
const items = Array(10).fill(0).map((_, i) => ({
title: `Service ${i + 1}`,
description: 'Description of service',
link: '',
icon: {
type: 'solid',
value: '#eee',
},
}))
</script>

0 comments on commit 366fdce

Please sign in to comment.