Skip to content

Commit

Permalink
Fix: About page content
Browse files Browse the repository at this point in the history
  • Loading branch information
tarunmangukiya committed Oct 29, 2019
1 parent 01cb9ac commit 51dd0e5
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion HOWTO.md
Expand Up @@ -3,7 +3,7 @@ npm i @cloudflare/wrangler -g

wrangler config

npx create-nuxt-app my-nuxt-app
npx create-nuxt-app nuxt-cloudflare-workers

wrangler init --site

Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# my-nuxt-app
# nuxt-cloudflare-workers

> My best Nuxt.js project
Expand Down
2 changes: 1 addition & 1 deletion nuxt.config.js
@@ -1,6 +1,6 @@

export default {
mode: 'spa',
mode: 'universal',
/*
** Headers of the page
*/
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,5 +1,5 @@
{
"name": "my-nuxt-app",
"name": "nuxt-cloudflare-workers",
"version": "1.0.0",
"description": "My best Nuxt.js project",
"author": "Tarun Mangukiya",
Expand Down
14 changes: 7 additions & 7 deletions pages/about.vue
Expand Up @@ -3,25 +3,25 @@
<div>
<logo />
<h1 class="title">
my-nuxt-app about
Tarun Mangukiya
</h1>
<h2 class="subtitle">
My best Nuxt.js project deployed on Cloudflare Workers
Co-founder of <a href="https://iconscout.com">Iconscout</a>
</h2>
<div class="links">
<a
href="https://nuxtjs.org/"
href="https://github.com/tarunmangukiya"
target="_blank"
class="button--green"
class="button--grey"
>
Documentation
GitHub
</a>
<a
href="https://github.com/nuxt/nuxt.js"
href="https://twitter.com/tarunmangukiya"
target="_blank"
class="button--grey"
>
GitHub
Twitter
</a>
</div>
</div>
Expand Down
18 changes: 9 additions & 9 deletions pages/index.vue
Expand Up @@ -3,18 +3,12 @@
<div>
<logo />
<h1 class="title">
my-nuxt-app
NuxtJS
</h1>
<h2 class="subtitle">
My best Nuxt.js project deployed on Cloudflare Workers
Yay! It's running on Cloudflare Workers.
</h2>
<div class="links">
<nuxt-link
:to="{ name: 'about' }"
class="button--green"
>
About
</nuxt-link>
<a
href="https://nuxtjs.org/"
target="_blank"
Expand All @@ -23,12 +17,18 @@
Documentation
</a>
<a
href="https://github.com/nuxt/nuxt.js"
href="https://github.com/tarunmangukiya/nuxt-cloudflare-workers"
target="_blank"
class="button--grey"
>
GitHub
</a>
<nuxt-link
:to="{ name: 'about' }"
class="button--grey"
>
About
</nuxt-link>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion wrangler.toml
@@ -1,5 +1,5 @@
account_id = "823a7a9b352ff317b2a4ca9e22c96b8f"
name = "my-nuxt-app"
name = "nuxt-cloudflare-workers"
type = "webpack"
route = ""
workers_dev = true
Expand Down

0 comments on commit 51dd0e5

Please sign in to comment.