├── .github └── workflows │ └── deploy.xml ├── .gitignore ├── .vscode └── extensions.json ├── CNAME ├── README.md ├── database.rules.json ├── functions ├── .eslintrc.js ├── .gitignore ├── index.js ├── package-lock.json └── package.json ├── index.html ├── jsconfig.json ├── package.json ├── public └── favicon.ico ├── src ├── App.vue ├── Layouts │ └── c3n97.vue ├── Views │ ├── Auth │ │ ├── About.vue │ │ ├── Layout.vue │ │ ├── Login.vue │ │ ├── Register.vue │ │ └── checkInfo.js │ ├── Experience.vue │ ├── Home.vue │ ├── PlusServices.vue │ ├── Run.vue │ └── Studio.vue ├── main.js └── store.js └── vite.config.js /.github/workflows/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/.github/workflows/deploy.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | web.oldsquaw.cn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/README.md -------------------------------------------------------------------------------- /database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/database.rules.json -------------------------------------------------------------------------------- /functions/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/functions/.eslintrc.js -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.local -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/functions/package.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/index.html -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/Layouts/c3n97.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Layouts/c3n97.vue -------------------------------------------------------------------------------- /src/Views/Auth/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Views/Auth/About.vue -------------------------------------------------------------------------------- /src/Views/Auth/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Views/Auth/Layout.vue -------------------------------------------------------------------------------- /src/Views/Auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Views/Auth/Login.vue -------------------------------------------------------------------------------- /src/Views/Auth/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Views/Auth/Register.vue -------------------------------------------------------------------------------- /src/Views/Auth/checkInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Views/Auth/checkInfo.js -------------------------------------------------------------------------------- /src/Views/Experience.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Views/Experience.vue -------------------------------------------------------------------------------- /src/Views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Views/Home.vue -------------------------------------------------------------------------------- /src/Views/PlusServices.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Views/PlusServices.vue -------------------------------------------------------------------------------- /src/Views/Run.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Views/Run.vue -------------------------------------------------------------------------------- /src/Views/Studio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/Views/Studio.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/main.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/src/store.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oldsquaw/Web/HEAD/vite.config.js --------------------------------------------------------------------------------