Skip to content

Commit

Permalink
refactor: new start with nuxt/ui
Browse files Browse the repository at this point in the history
  • Loading branch information
janfrl committed Nov 3, 2023
1 parent 7f5ae8d commit 66f4735
Show file tree
Hide file tree
Showing 148 changed files with 10,923 additions and 27,316 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/cd.yml

This file was deleted.

96 changes: 7 additions & 89 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,91 +1,9 @@
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
/logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
node_modules
*.log*
.nuxt

# Nuxt generate
dist
.nitro
.cache
.output

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless

# IDE / Editor
.idea

# Service worker
sw.*

# macOS
.DS_Store

# Vim swap files
*.swp
.data
.env
dist
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
shamefully-hoist=true
strict-peer-dependencies=false
70 changes: 70 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
// Enable the ESlint flat config support
"eslint.experimental.useFlatConfig": true,
// Disable the default formatter, use eslint instead
"prettier.enable": false,
"editor.formatOnSave": false,
// Auto fix
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{
"rule": "style/*",
"severity": "off"
},
{
"rule": "*-indent",
"severity": "off"
},
{
"rule": "*-spacing",
"severity": "off"
},
{
"rule": "*-spaces",
"severity": "off"
},
{
"rule": "*-order",
"severity": "off"
},
{
"rule": "*-dangle",
"severity": "off"
},
{
"rule": "*-newline",
"severity": "off"
},
{
"rule": "*quotes",
"severity": "off"
},
{
"rule": "*semi",
"severity": "off"
}
],
// Enable eslint for all supported languages
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml"
],
"files.associations": {
"*.css": "tailwindcss"
},
"editor.quickSuggestions": {
"strings": true
},
}
81 changes: 27 additions & 54 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,69 +1,42 @@
# www.siegel-steinmetz.de
# Content v2 Minimal Starter

## Build Setup
Look at the [Content documentation](https://content.nuxt.com/) to learn more.

```bash
# install dependencies
$ npm install

# serve with hot reload at localhost:3000
$ npm run dev

# build for production and launch server
$ npm run build
$ npm run start

# generate static project
$ npm run generate
```

For detailed explanation on how things work, check out the [documentation](https://nuxtjs.org).

## Special Directories

You can create the following extra directories, some of which have special behaviors. Only `pages` is required; you can delete them if you don't want to use their functionality.

### `assets`

The assets directory contains your uncompiled assets such as Stylus or Sass files, images, or fonts.

More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/assets).

### `components`

The components directory contains your Vue.js components. Components make up the different parts of your page and can be reused and imported into your pages, layouts and even other components.
## Setup

More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/components).
Make sure to install the dependencies:

### `layouts`

Layouts are a great help when you want to change the look and feel of your Nuxt app, whether you want to include a sidebar or have distinct layouts for mobile and desktop.

More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/layouts).


### `pages`

This directory contains your application views and routes. Nuxt will read all the `*.vue` files inside this directory and setup Vue Router automatically.
```bash
# yarn
yarn install

More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/get-started/routing).
# npm
npm install

### `plugins`
# pnpm
pnpm install
```

The plugins directory contains JavaScript plugins that you want to run before instantiating the root Vue.js Application. This is the place to add Vue plugins and to inject functions or constants. Every time you need to use `Vue.use()`, you should create a file in `plugins/` and add its path to plugins in `nuxt.config.js`.
## Development Server

More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/plugins).
Start the development server on http://localhost:3000

### `static`
```bash
npm run dev
```

This directory contains your static files. Each file inside this directory is mapped to `/`.
## Production

Example: `/static/robots.txt` is mapped as `/robots.txt`.
Build the application for production:

More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/static).
```bash
npm run build
```

### `store`
Locally preview production build:

This directory contains your Vuex store files. Creating a file in this directory automatically activates Vuex.
```bash
npm run preview
```

More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/store).
Checkout the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
5 changes: 5 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
1 change: 0 additions & 1 deletion assets/favicon.svg

This file was deleted.

Binary file removed assets/img/about_1.jpg
Binary file not shown.
Binary file removed assets/img/about_2.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-001.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-002.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-003.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-004.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-005.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-006.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-007.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-008.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-009.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-010.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-011.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-012.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-013.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-014.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-015.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-016.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-017.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-018.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-019.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-020.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-021.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-022.jpg
Binary file not shown.
Binary file removed assets/img/album/grabmallager/grabmallager-023.jpg
Diff not rendered.
Binary file removed assets/img/album/grabmallager/grabmallager-024.jpg
Diff not rendered.
Binary file removed assets/img/album/grabmallager/grabmallager-025.jpg
Diff not rendered.
Binary file removed assets/img/album/grabmallager/grabmallager-026.jpg
Diff not rendered.
Binary file removed assets/img/album/grabmallager/grabmallager-027.jpg
Diff not rendered.
Binary file removed assets/img/album/grabmallager/grabmallager-028.jpg
Diff not rendered.
Binary file removed assets/img/album/grabmallager/grabmallager-029.jpg
Diff not rendered.
Binary file removed assets/img/album/grabmallager/grabmallager-030.jpg
Diff not rendered.
Binary file removed assets/img/album/grabmallager/grabmallager-031.jpg
Diff not rendered.
Diff not rendered.
Binary file removed assets/img/album/grabmallager/grabmallager-033.jpg
Diff not rendered.
Binary file removed assets/img/album/grabmallager/grabmallager-034.jpg
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed assets/img/banner.webp
Binary file not shown.
Binary file removed assets/img/gallery_1.jpg
Diff not rendered.
Binary file removed assets/img/gallery_2.jpg
Diff not rendered.
Binary file removed assets/img/gallery_3.jpg
Diff not rendered.
Binary file removed assets/img/home_1.jpg
Diff not rendered.
Binary file removed assets/img/home_2.jpg
Diff not rendered.
Binary file removed assets/img/restorations_1.jpg
Diff not rendered.
Binary file removed assets/img/restorations_2.jpg
Diff not rendered.
Binary file removed assets/img/restorations_3.jpg
Diff not rendered.
Binary file removed assets/img/tombs_1.jpg
Diff not rendered.
Binary file removed assets/img/tombs_2.jpg
Diff not rendered.
Binary file removed assets/img/tombs_3.jpg
Diff not rendered.
4 changes: 0 additions & 4 deletions assets/variables.scss

This file was deleted.

1 change: 0 additions & 1 deletion assets/wave.svg
Diff not rendered.
5 changes: 5 additions & 0 deletions components/AppFooter.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<div>
<p>Footer</p>
</div>
</template>
7 changes: 7 additions & 0 deletions components/AppHeader.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<template>
<UHeader>
<template #logo>
<Logo class="w-auto h-6" />
</template>
</UHeader>
</template>
Loading

0 comments on commit 66f4735

Please sign in to comment.