Skip to content

Commit

Permalink
chore: stubs content
Browse files Browse the repository at this point in the history
  • Loading branch information
justin-schroeder committed Feb 7, 2024
1 parent 3ddc85b commit e6adc6e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docs/app.vue
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
<script setup lang="ts"></script>

<template>
<!-- <TheHeader /> -->
<TheHeader />
<ContainerSection>
<!-- <TheSearch /> -->
<TheSearch />
<main class="mt-20">
<ContentModify />
<ContentIntroduction />
<ContentInstallation />
<ContentFormat />
<ContentParse />
<ContentModify />
<ContentData />
<ContentTimezones />
</main>
</ContainerSection>
<TheFooter />
</template>
5 changes: 5 additions & 0 deletions docs/components/TheFooter.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<script lang="ts" setup></script>

<template>
<footer>The footer should go here...</footer>
</template>
8 changes: 8 additions & 0 deletions docs/components/content/Data.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<script lang="ts" setup></script>

<template>
<PageSection id="data">
<HeadingSection title="Data" class="text-sky-500" />
<p></p>
</PageSection>
</template>
8 changes: 8 additions & 0 deletions docs/components/content/Timezones.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<script lang="ts" setup></script>

<template>
<PageSection id="timezones">
<HeadingSection title="Data" class="text-sky-500" />
<p></p>
</PageSection>
</template>

0 comments on commit e6adc6e

Please sign in to comment.