├── .editorconfig ├── .gitattributes ├── .gitignore ├── INSTALL_ADDITIONAL_WINES.md ├── README.md ├── next ├── .gitignore ├── components │ ├── Footer.jsx │ ├── Header.jsx │ ├── Layout.jsx │ ├── MultiSelect.jsx │ └── WineCard.jsx ├── lib │ ├── attributes.js │ └── wines.js ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.jsx │ ├── _document.jsx │ ├── api │ │ ├── recommend.js │ │ └── wines.js │ ├── find.jsx │ ├── index.jsx │ ├── recommend.jsx │ └── wines.jsx ├── public │ └── data │ │ └── sample_wines.csv └── styles │ └── globals.css ├── rm.png └── vercel.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL_ADDITIONAL_WINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/INSTALL_ADDITIONAL_WINES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/README.md -------------------------------------------------------------------------------- /next/.gitignore: -------------------------------------------------------------------------------- 1 | .next/ 2 | node_modules/ 3 | out/ 4 | .vercel/ -------------------------------------------------------------------------------- /next/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/components/Footer.jsx -------------------------------------------------------------------------------- /next/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/components/Header.jsx -------------------------------------------------------------------------------- /next/components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/components/Layout.jsx -------------------------------------------------------------------------------- /next/components/MultiSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/components/MultiSelect.jsx -------------------------------------------------------------------------------- /next/components/WineCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/components/WineCard.jsx -------------------------------------------------------------------------------- /next/lib/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/lib/attributes.js -------------------------------------------------------------------------------- /next/lib/wines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/lib/wines.js -------------------------------------------------------------------------------- /next/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/next.config.js -------------------------------------------------------------------------------- /next/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/package-lock.json -------------------------------------------------------------------------------- /next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/package.json -------------------------------------------------------------------------------- /next/pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/pages/_app.jsx -------------------------------------------------------------------------------- /next/pages/_document.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/pages/_document.jsx -------------------------------------------------------------------------------- /next/pages/api/recommend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/pages/api/recommend.js -------------------------------------------------------------------------------- /next/pages/api/wines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/pages/api/wines.js -------------------------------------------------------------------------------- /next/pages/find.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/pages/find.jsx -------------------------------------------------------------------------------- /next/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/pages/index.jsx -------------------------------------------------------------------------------- /next/pages/recommend.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/pages/recommend.jsx -------------------------------------------------------------------------------- /next/pages/wines.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/pages/wines.jsx -------------------------------------------------------------------------------- /next/public/data/sample_wines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/public/data/sample_wines.csv -------------------------------------------------------------------------------- /next/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/next/styles/globals.css -------------------------------------------------------------------------------- /rm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/rm.png -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/FindMyWine/HEAD/vercel.json --------------------------------------------------------------------------------