Skip to content
This repository was archived by the owner on May 8, 2021. It is now read-only.

Commit 12b926a

Browse files
committed
add: about page and rename public to static
1 parent 60369d5 commit 12b926a

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Diff for: examples/nuxt/pages/about.vue

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div class="min-h-screen flex flex-col items-center justify-center">
3+
<h1 class="text-5xl font-bold text-teal-600">Hello from Nuxt.</h1>
4+
<n-link to="/">Home page</n-link>
5+
</div>
6+
</template>

Diff for: examples/nuxt/pages/index.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<template>
2-
<div class="min-h-screen flex items-center justify-center">
3-
<h1 class="text-5xl font-bold text-teal-600">Hello from Tailwind.</h1>
2+
<div class="min-h-screen flex flex-col items-center justify-center">
3+
<h1 class="text-5xl font-bold text-teal-300">Hello from Tailwind.</h1>
4+
<n-link to="/about">About page</n-link>
45
</div>
56
</template>
File renamed without changes.

0 commit comments

Comments
 (0)