├── .gitignore ├── public └── favicon.ico ├── src ├── assets │ └── logo.png ├── main.js ├── components │ ├── ListItem.vue │ ├── List.vue │ └── GenerateButton.vue └── App.vue ├── vite.config.js ├── package.json ├── index.html └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassidoo/link-in-bio-generator/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassidoo/link-in-bio-generator/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue' 2 | import App from './App.vue' 3 | 4 | createApp(App).mount('#app') 5 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [vue()] 7 | }) 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.0.0", 3 | "scripts": { 4 | "dev": "vite", 5 | "build": "vite build", 6 | "serve": "vite preview" 7 | }, 8 | "dependencies": { 9 | "vue": "^3.0.5" 10 | }, 11 | "devDependencies": { 12 | "@vitejs/plugin-vue": "^1.2.3", 13 | "@vue/compiler-sfc": "^3.0.5", 14 | "vite": "^2.3.7" 15 | } 16 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |Add a link:
4 | 5 | 6 | 7 | 8 |Your name:
5 |6 | Your profile picture: 7 | 8 |
9 |16 | Here's an example site 17 | · 18 | Here's the repo 19 |
20 | 21 | 22 | 23 | 56 | 57 | 112 | --------------------------------------------------------------------------------