├── .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 | "Link in Bio" site generator! 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## "Link in Bio" site generator 2 | 3 | [![Netlify Status](https://api.netlify.com/api/v1/badges/c5662472-48f2-4e6c-ab7e-45178e0e7372/deploy-status)](https://app.netlify.com/sites/linkinbiogen/deploys) 4 | 5 | This is a "link in bio" site generator that allows you to add a list of links, along with your name and photo to generate a nice, clean site to link to on your social media profiles. 6 | 7 | [Check it out here to make your own!](https://linkinbiogen.netlify.app/) 8 | -------------------------------------------------------------------------------- /src/components/ListItem.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 26 | 27 | 32 | -------------------------------------------------------------------------------- /src/components/List.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 43 | 44 | 52 | -------------------------------------------------------------------------------- /src/components/GenerateButton.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 45 | 46 | 65 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 22 | 23 | 56 | 57 | 112 | --------------------------------------------------------------------------------