├── .gitignore ├── LICENSE ├── README.md ├── components ├── AppForm │ ├── Hr.vue │ ├── Links.vue │ ├── Preview.vue │ ├── Profile.vue │ └── SocialLinks.vue ├── Base │ ├── FormSection.vue │ └── Loading.vue ├── ExternalLink.vue └── Templates │ └── Simple.vue ├── nuxt.config.ts ├── package.json ├── pages ├── 1.vue └── index.vue ├── public └── dark-gradient.webp ├── tailwind.config.js ├── tsconfig.json ├── utils └── transformer.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/README.md -------------------------------------------------------------------------------- /components/AppForm/Hr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/components/AppForm/Hr.vue -------------------------------------------------------------------------------- /components/AppForm/Links.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/components/AppForm/Links.vue -------------------------------------------------------------------------------- /components/AppForm/Preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/components/AppForm/Preview.vue -------------------------------------------------------------------------------- /components/AppForm/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/components/AppForm/Profile.vue -------------------------------------------------------------------------------- /components/AppForm/SocialLinks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/components/AppForm/SocialLinks.vue -------------------------------------------------------------------------------- /components/Base/FormSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/components/Base/FormSection.vue -------------------------------------------------------------------------------- /components/Base/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/components/Base/Loading.vue -------------------------------------------------------------------------------- /components/ExternalLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/components/ExternalLink.vue -------------------------------------------------------------------------------- /components/Templates/Simple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/components/Templates/Simple.vue -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/package.json -------------------------------------------------------------------------------- /pages/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/pages/1.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/pages/index.vue -------------------------------------------------------------------------------- /public/dark-gradient.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/public/dark-gradient.webp -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/transformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/utils/transformer.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/onelink/HEAD/yarn.lock --------------------------------------------------------------------------------