Skip to content

Commit

Permalink
Configurando tema
Browse files Browse the repository at this point in the history
  • Loading branch information
hermesalvesbr committed Nov 2, 2022
0 parents commit b717a92
Show file tree
Hide file tree
Showing 13 changed files with 6,237 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules
*.log*
.nuxt
.nitro
.cache
.output
.env
dist
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shamefully-hoist=true
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Assinar PDF para usuários registrados
- Documentos em https://cms.softagon.app

# Tema utilizado

A personal website theme powered by [Nuxt Content](https://content.nuxtjs.org), [TailwindCSS](https://tailwindcss.com), [Iconify](https://iconify.design) and [Vue components](https://vuejs.org).

- 📖  [Demo & Docs](https://content-wind.nuxt.space)
- 🕹  [Play online](https://stackblitz.com/github/Atinux/content-wind-template)
- 👀  [Demo video](https://twitter.com/Atinux/status/1578505586979012608)
6 changes: 6 additions & 0 deletions app.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default defineAppConfig({
socials: {
twitter: 'Atinux',
github: 'Atinux/content-wind'
}
})
6 changes: 6 additions & 0 deletions components/content/HelloWorld.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<template>
<div class="rounded p-2 bg-green-200 dark:bg-green-800 text-green-800 dark:text-green-200">
<!-- https://content.nuxtjs.org/api/components/content-slot -->
<ContentSlot :use="$slots.default" unwrap="p" />
</div>
</template>
13 changes: 13 additions & 0 deletions content/1.index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: 'Home'
---

# Hello World

Welcome to [Content Wind](https://content-wind.nuxt.space) demo :rocket:

Go to the [about page](/about){.text-pink-400}.

::hello-world
Hello from a component
::
3 changes: 3 additions & 0 deletions content/2.about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# About

I am the about page ;)
8 changes: 8 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
extends: 'content-wind',
// Workaround for Stackblitz on RC12
experimental: {
writeEarlyHints: false
}
})
14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"generate": "nuxi generate",
"preview": "nuxi preview",
"postinstall": "nuxi prepare"
},
"devDependencies": {
"content-wind": "^0.2.4",
"nuxt": "3.0.0-rc.12"
}
}
Binary file added public/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
4 changes: 4 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
// https://v3.nuxtjs.org/concepts/typescript
"extends": "./.nuxt/tsconfig.json"
}
6,164 changes: 6,164 additions & 0 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit b717a92

Please sign in to comment.