From e87372ee6a3b0b50473944f7d8c62ca1a0b9aa49 Mon Sep 17 00:00:00 2001 From: vishnuraghavb Date: Thu, 2 Feb 2023 14:19:58 +0530 Subject: [PATCH] fixed links in demo page --- .dockerignore | 0 .eslintignore | 0 .eslintrc | 0 .npmrc | 1 + Dockerfile | 2 +- assets/icons/appstore.svg | 0 assets/icons/artstation.svg | 0 assets/icons/buymeacoffee.svg | 0 assets/icons/cashapp.svg | 0 assets/icons/gitlab.svg | 0 assets/icons/playstore.svg | 0 assets/icons/xmpp.svg | 0 assets/styles/T2.min.css | 0 assets/styles/T3.min.css | 0 docker-compose.yml | 4 +- env.example | 0 jsconfig.json | 0 mixins/utils.js | 0 package-lock.json | 3 + package.json | 4 + static/demo/EnBizCard's public key.asc | 0 static/demo/cover.gif | Bin static/demo/enbizcard.vcf | 0 static/demo/index.html | 1333 +++++++++++++++-- static/demo/logo.svg | 0 .../demo/media/business_card_-_wikipedia.jpeg | Bin .../demo/media/business_card_-_wikipedia.pdf | Bin static/demo/media/butterflies.mp4 | Bin .../media/over_the_water,_humans_gather.jpeg | Bin .../media/over_the_water,_humans_gather.mp3 | Bin static/demo/media/photo.png | Bin .../photo_by_andreas_g\303\274cklhorn.jpeg" | Bin static/demo/media/photo_by_erol_ahmed.jpeg | Bin static/demo/photo.png | Bin static/demo/qrcode.min.js | 0 static/demo/style.min.css | 0 store/index.js | 0 37 files changed, 1252 insertions(+), 95 deletions(-) mode change 100644 => 100755 .dockerignore mode change 100644 => 100755 .eslintignore mode change 100644 => 100755 .eslintrc create mode 100644 .npmrc mode change 100644 => 100755 Dockerfile mode change 100644 => 100755 assets/icons/appstore.svg mode change 100644 => 100755 assets/icons/artstation.svg mode change 100644 => 100755 assets/icons/buymeacoffee.svg mode change 100644 => 100755 assets/icons/cashapp.svg mode change 100644 => 100755 assets/icons/gitlab.svg mode change 100644 => 100755 assets/icons/playstore.svg mode change 100644 => 100755 assets/icons/xmpp.svg mode change 100644 => 100755 assets/styles/T2.min.css mode change 100644 => 100755 assets/styles/T3.min.css mode change 100644 => 100755 docker-compose.yml mode change 100644 => 100755 env.example mode change 100644 => 100755 jsconfig.json mode change 100644 => 100755 mixins/utils.js mode change 100644 => 100755 package-lock.json mode change 100644 => 100755 static/demo/EnBizCard's public key.asc mode change 100644 => 100755 static/demo/cover.gif mode change 100644 => 100755 static/demo/enbizcard.vcf mode change 100644 => 100755 static/demo/index.html mode change 100644 => 100755 static/demo/logo.svg mode change 100644 => 100755 static/demo/media/business_card_-_wikipedia.jpeg mode change 100644 => 100755 static/demo/media/business_card_-_wikipedia.pdf mode change 100644 => 100755 static/demo/media/butterflies.mp4 mode change 100644 => 100755 static/demo/media/over_the_water,_humans_gather.jpeg mode change 100644 => 100755 static/demo/media/over_the_water,_humans_gather.mp3 mode change 100644 => 100755 static/demo/media/photo.png mode change 100644 => 100755 "static/demo/media/photo_by_andreas_g\303\274cklhorn.jpeg" mode change 100644 => 100755 static/demo/media/photo_by_erol_ahmed.jpeg mode change 100644 => 100755 static/demo/photo.png mode change 100644 => 100755 static/demo/qrcode.min.js mode change 100644 => 100755 static/demo/style.min.css mode change 100644 => 100755 store/index.js diff --git a/.dockerignore b/.dockerignore old mode 100644 new mode 100755 diff --git a/.eslintignore b/.eslintignore old mode 100644 new mode 100755 diff --git a/.eslintrc b/.eslintrc old mode 100644 new mode 100755 diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..4fd0219 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +engine-strict=true \ No newline at end of file diff --git a/Dockerfile b/Dockerfile old mode 100644 new mode 100755 index 475cf4c..fdb5dd3 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:lts-alpine AS build +FROM node:16.17.0-alpine AS build WORKDIR /app COPY package*.json ./ RUN npm i diff --git a/assets/icons/appstore.svg b/assets/icons/appstore.svg old mode 100644 new mode 100755 diff --git a/assets/icons/artstation.svg b/assets/icons/artstation.svg old mode 100644 new mode 100755 diff --git a/assets/icons/buymeacoffee.svg b/assets/icons/buymeacoffee.svg old mode 100644 new mode 100755 diff --git a/assets/icons/cashapp.svg b/assets/icons/cashapp.svg old mode 100644 new mode 100755 diff --git a/assets/icons/gitlab.svg b/assets/icons/gitlab.svg old mode 100644 new mode 100755 diff --git a/assets/icons/playstore.svg b/assets/icons/playstore.svg old mode 100644 new mode 100755 diff --git a/assets/icons/xmpp.svg b/assets/icons/xmpp.svg old mode 100644 new mode 100755 diff --git a/assets/styles/T2.min.css b/assets/styles/T2.min.css old mode 100644 new mode 100755 diff --git a/assets/styles/T3.min.css b/assets/styles/T3.min.css old mode 100644 new mode 100755 diff --git a/docker-compose.yml b/docker-compose.yml old mode 100644 new mode 100755 index 7eaa1e2..edb6ada --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ -version: "3.8" +version: '3.8' services: - app: + enbizcard: build: . container_name: enbizcard ports: diff --git a/env.example b/env.example old mode 100644 new mode 100755 diff --git a/jsconfig.json b/jsconfig.json old mode 100644 new mode 100755 diff --git a/mixins/utils.js b/mixins/utils.js old mode 100644 new mode 100755 diff --git a/package-lock.json b/package-lock.json old mode 100644 new mode 100755 index 24aeab5..21bbbf6 --- a/package-lock.json +++ b/package-lock.json @@ -25,6 +25,9 @@ "raw-loader": "^4.0.2", "sass": "^1.52.1", "sass-loader": "^10.2.1" + }, + "engines": { + "node": "16.17.0" } }, "node_modules/@aceforth/nuxt-optimized-images": { diff --git a/package.json b/package.json index 8d05824..7d94831 100755 --- a/package.json +++ b/package.json @@ -8,6 +8,10 @@ "start": "nuxt start", "generate": "nuxt generate" }, + "engines": { + "node": "16.17.0" + }, + "engineStrict": true, "dependencies": { "@caohenghu/vue-colorpicker": "^1.2.4", "@nuxtjs/pwa": "^3.3.5", diff --git a/static/demo/EnBizCard's public key.asc b/static/demo/EnBizCard's public key.asc old mode 100644 new mode 100755 diff --git a/static/demo/cover.gif b/static/demo/cover.gif old mode 100644 new mode 100755 diff --git a/static/demo/enbizcard.vcf b/static/demo/enbizcard.vcf old mode 100644 new mode 100755 diff --git a/static/demo/index.html b/static/demo/index.html old mode 100644 new mode 100755 index 4156596..b0fcc45 --- a/static/demo/index.html +++ b/static/demo/index.html @@ -1,92 +1,1241 @@ - EnBizCard's Digital Business Card
Background Pattern
Photo

- EnBizCard -

- An Open-Source Digital Business Card Generator -

- EnBizCard -

- EnBizCard helps you create beautiful, responsive HTML-based digital business cards that can be hosted on your website. -

Save Contact

- Mobile -

- SMS -

- Telegram -

- Signal -

- Email -

- Website -

- Store -

\ No newline at end of file + + + + + + + + + + + + + + EnBizCard's Digital Business Card + + + + + + + + + +
+ +
+ Background Pattern + +
+
+
+ Photo +
+

EnBizCard

+

An Open-Source Digital Business Card Generator

+

EnBizCard

+
+

+ EnBizCard helps you create beautiful, responsive HTML-based digital + business cards that can be hosted on your website. +

+
+ + + + + + +
+

Save Contact

+
+
+
+
+ + + +
+

Mobile

+
+
+
+
+
+ + + + + +
+

SMS

+
+
+
+
+
+ + + +
+

Telegram

+
+
+
+
+
+ + + + +
+

Signal

+
+
+
+
+
+ + + + +
+

Email

+
+
+
+ +
+
+
+
+ + + + + + + +
+

Store

+
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ + + + + + + +
+ + + + + + diff --git a/static/demo/logo.svg b/static/demo/logo.svg old mode 100644 new mode 100755 diff --git a/static/demo/media/business_card_-_wikipedia.jpeg b/static/demo/media/business_card_-_wikipedia.jpeg old mode 100644 new mode 100755 diff --git a/static/demo/media/business_card_-_wikipedia.pdf b/static/demo/media/business_card_-_wikipedia.pdf old mode 100644 new mode 100755 diff --git a/static/demo/media/butterflies.mp4 b/static/demo/media/butterflies.mp4 old mode 100644 new mode 100755 diff --git a/static/demo/media/over_the_water,_humans_gather.jpeg b/static/demo/media/over_the_water,_humans_gather.jpeg old mode 100644 new mode 100755 diff --git a/static/demo/media/over_the_water,_humans_gather.mp3 b/static/demo/media/over_the_water,_humans_gather.mp3 old mode 100644 new mode 100755 diff --git a/static/demo/media/photo.png b/static/demo/media/photo.png old mode 100644 new mode 100755 diff --git "a/static/demo/media/photo_by_andreas_g\303\274cklhorn.jpeg" "b/static/demo/media/photo_by_andreas_g\303\274cklhorn.jpeg" old mode 100644 new mode 100755 diff --git a/static/demo/media/photo_by_erol_ahmed.jpeg b/static/demo/media/photo_by_erol_ahmed.jpeg old mode 100644 new mode 100755 diff --git a/static/demo/photo.png b/static/demo/photo.png old mode 100644 new mode 100755 diff --git a/static/demo/qrcode.min.js b/static/demo/qrcode.min.js old mode 100644 new mode 100755 diff --git a/static/demo/style.min.css b/static/demo/style.min.css old mode 100644 new mode 100755 diff --git a/store/index.js b/store/index.js old mode 100644 new mode 100755