├── .gitignore ├── .vscode └── settings.json ├── README.md ├── attendees.py ├── generate_embeddings.py ├── graph ├── .DS_Store ├── .gitignore ├── fonts │ ├── .DS_Store │ ├── Space_Mono │ │ ├── OFL.txt │ │ ├── SpaceMono-Bold.ttf │ │ ├── SpaceMono-BoldItalic.ttf │ │ ├── SpaceMono-Italic.ttf │ │ └── SpaceMono-Regular.ttf │ ├── Tiempos Headline │ │ ├── TiemposHeadline-Black.otf │ │ ├── TiemposHeadline-BlackItalic.otf │ │ ├── TiemposHeadline-Bold.otf │ │ ├── TiemposHeadline-BoldItalic.otf │ │ ├── TiemposHeadline-Light.otf │ │ ├── TiemposHeadline-LightItalic.otf │ │ ├── TiemposHeadline-Medium.otf │ │ ├── TiemposHeadline-MediumItalic.otf │ │ ├── TiemposHeadline-Regular.otf │ │ ├── TiemposHeadline-RegularItalic.otf │ │ ├── TiemposHeadline-Semibold.otf │ │ └── TiemposHeadline-SemiboldItalic.otf │ └── Untitled Sans │ │ ├── UntitledSans-Black.otf │ │ ├── UntitledSans-BlackItalic.otf │ │ ├── UntitledSans-Bold.otf │ │ ├── UntitledSans-BoldItalic.otf │ │ ├── UntitledSans-Light.otf │ │ ├── UntitledSans-LightItalic.otf │ │ ├── UntitledSans-Medium.otf │ │ ├── UntitledSans-MediumItalic.otf │ │ ├── UntitledSans-Regular.otf │ │ └── UntitledSans-RegularItalic.otf ├── index.html ├── index.js ├── input.css ├── nodeSettings.js ├── package.json ├── pnpm-lock.yaml └── tailwind.config.js ├── images ├── graph.png └── match.png ├── main.py ├── match ├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.mjs ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public │ ├── fonts │ │ ├── Space_Mono │ │ │ ├── OFL.txt │ │ │ ├── SpaceMono-Bold.ttf │ │ │ ├── SpaceMono-BoldItalic.ttf │ │ │ ├── SpaceMono-Italic.ttf │ │ │ └── SpaceMono-Regular.ttf │ │ ├── Tiempos Headline │ │ │ ├── TiemposHeadline-Black.otf │ │ │ ├── TiemposHeadline-BlackItalic.otf │ │ │ ├── TiemposHeadline-Bold.otf │ │ │ ├── TiemposHeadline-BoldItalic.otf │ │ │ ├── TiemposHeadline-Light.otf │ │ │ ├── TiemposHeadline-LightItalic.otf │ │ │ ├── TiemposHeadline-Medium.otf │ │ │ ├── TiemposHeadline-MediumItalic.otf │ │ │ ├── TiemposHeadline-Regular.otf │ │ │ ├── TiemposHeadline-RegularItalic.otf │ │ │ ├── TiemposHeadline-Semibold.otf │ │ │ └── TiemposHeadline-SemiboldItalic.otf │ │ └── Untitled Sans │ │ │ ├── UntitledSans-Black.otf │ │ │ ├── UntitledSans-BlackItalic.otf │ │ │ ├── UntitledSans-Bold.otf │ │ │ ├── UntitledSans-BoldItalic.otf │ │ │ ├── UntitledSans-Light.otf │ │ │ ├── UntitledSans-LightItalic.otf │ │ │ ├── UntitledSans-Medium.otf │ │ │ ├── UntitledSans-MediumItalic.otf │ │ │ ├── UntitledSans-Regular.otf │ │ │ └── UntitledSans-RegularItalic.otf │ ├── next.svg │ └── vercel.svg ├── src │ ├── app │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── Search.tsx │ │ └── ui │ │ │ ├── dialog.tsx │ │ │ └── input.tsx │ └── lib │ │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json ├── requirements.txt ├── summarize.py ├── summarize_graph_data.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/README.md -------------------------------------------------------------------------------- /attendees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/attendees.py -------------------------------------------------------------------------------- /generate_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/generate_embeddings.py -------------------------------------------------------------------------------- /graph/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/.DS_Store -------------------------------------------------------------------------------- /graph/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | 3 | package-lock.json 4 | .vercel 5 | -------------------------------------------------------------------------------- /graph/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/.DS_Store -------------------------------------------------------------------------------- /graph/fonts/Space_Mono/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Space_Mono/OFL.txt -------------------------------------------------------------------------------- /graph/fonts/Space_Mono/SpaceMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Space_Mono/SpaceMono-Bold.ttf -------------------------------------------------------------------------------- /graph/fonts/Space_Mono/SpaceMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Space_Mono/SpaceMono-BoldItalic.ttf -------------------------------------------------------------------------------- /graph/fonts/Space_Mono/SpaceMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Space_Mono/SpaceMono-Italic.ttf -------------------------------------------------------------------------------- /graph/fonts/Space_Mono/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Space_Mono/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-Black.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-BlackItalic.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-Bold.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-BoldItalic.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-Light.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-LightItalic.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-Medium.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-MediumItalic.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-Regular.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-RegularItalic.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-Semibold.otf -------------------------------------------------------------------------------- /graph/fonts/Tiempos Headline/TiemposHeadline-SemiboldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Tiempos Headline/TiemposHeadline-SemiboldItalic.otf -------------------------------------------------------------------------------- /graph/fonts/Untitled Sans/UntitledSans-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Untitled Sans/UntitledSans-Black.otf -------------------------------------------------------------------------------- /graph/fonts/Untitled Sans/UntitledSans-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Untitled Sans/UntitledSans-BlackItalic.otf -------------------------------------------------------------------------------- /graph/fonts/Untitled Sans/UntitledSans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Untitled Sans/UntitledSans-Bold.otf -------------------------------------------------------------------------------- /graph/fonts/Untitled Sans/UntitledSans-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Untitled Sans/UntitledSans-BoldItalic.otf -------------------------------------------------------------------------------- /graph/fonts/Untitled Sans/UntitledSans-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Untitled Sans/UntitledSans-Light.otf -------------------------------------------------------------------------------- /graph/fonts/Untitled Sans/UntitledSans-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Untitled Sans/UntitledSans-LightItalic.otf -------------------------------------------------------------------------------- /graph/fonts/Untitled Sans/UntitledSans-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Untitled Sans/UntitledSans-Medium.otf -------------------------------------------------------------------------------- /graph/fonts/Untitled Sans/UntitledSans-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Untitled Sans/UntitledSans-MediumItalic.otf -------------------------------------------------------------------------------- /graph/fonts/Untitled Sans/UntitledSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Untitled Sans/UntitledSans-Regular.otf -------------------------------------------------------------------------------- /graph/fonts/Untitled Sans/UntitledSans-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/fonts/Untitled Sans/UntitledSans-RegularItalic.otf -------------------------------------------------------------------------------- /graph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/index.html -------------------------------------------------------------------------------- /graph/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/index.js -------------------------------------------------------------------------------- /graph/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/input.css -------------------------------------------------------------------------------- /graph/nodeSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/nodeSettings.js -------------------------------------------------------------------------------- /graph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/package.json -------------------------------------------------------------------------------- /graph/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/pnpm-lock.yaml -------------------------------------------------------------------------------- /graph/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/graph/tailwind.config.js -------------------------------------------------------------------------------- /images/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/images/graph.png -------------------------------------------------------------------------------- /images/match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/images/match.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/main.py -------------------------------------------------------------------------------- /match/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /match/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/.gitignore -------------------------------------------------------------------------------- /match/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/README.md -------------------------------------------------------------------------------- /match/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/components.json -------------------------------------------------------------------------------- /match/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/next.config.mjs -------------------------------------------------------------------------------- /match/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/package-lock.json -------------------------------------------------------------------------------- /match/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/package.json -------------------------------------------------------------------------------- /match/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/pnpm-lock.yaml -------------------------------------------------------------------------------- /match/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/postcss.config.js -------------------------------------------------------------------------------- /match/public/fonts/Space_Mono/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Space_Mono/OFL.txt -------------------------------------------------------------------------------- /match/public/fonts/Space_Mono/SpaceMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Space_Mono/SpaceMono-Bold.ttf -------------------------------------------------------------------------------- /match/public/fonts/Space_Mono/SpaceMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Space_Mono/SpaceMono-BoldItalic.ttf -------------------------------------------------------------------------------- /match/public/fonts/Space_Mono/SpaceMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Space_Mono/SpaceMono-Italic.ttf -------------------------------------------------------------------------------- /match/public/fonts/Space_Mono/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Space_Mono/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-Black.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-BlackItalic.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-Bold.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-BoldItalic.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-Light.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-LightItalic.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-Medium.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-MediumItalic.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-Regular.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-RegularItalic.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-Semibold.otf -------------------------------------------------------------------------------- /match/public/fonts/Tiempos Headline/TiemposHeadline-SemiboldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Tiempos Headline/TiemposHeadline-SemiboldItalic.otf -------------------------------------------------------------------------------- /match/public/fonts/Untitled Sans/UntitledSans-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Untitled Sans/UntitledSans-Black.otf -------------------------------------------------------------------------------- /match/public/fonts/Untitled Sans/UntitledSans-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Untitled Sans/UntitledSans-BlackItalic.otf -------------------------------------------------------------------------------- /match/public/fonts/Untitled Sans/UntitledSans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Untitled Sans/UntitledSans-Bold.otf -------------------------------------------------------------------------------- /match/public/fonts/Untitled Sans/UntitledSans-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Untitled Sans/UntitledSans-BoldItalic.otf -------------------------------------------------------------------------------- /match/public/fonts/Untitled Sans/UntitledSans-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Untitled Sans/UntitledSans-Light.otf -------------------------------------------------------------------------------- /match/public/fonts/Untitled Sans/UntitledSans-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Untitled Sans/UntitledSans-LightItalic.otf -------------------------------------------------------------------------------- /match/public/fonts/Untitled Sans/UntitledSans-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Untitled Sans/UntitledSans-Medium.otf -------------------------------------------------------------------------------- /match/public/fonts/Untitled Sans/UntitledSans-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Untitled Sans/UntitledSans-MediumItalic.otf -------------------------------------------------------------------------------- /match/public/fonts/Untitled Sans/UntitledSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Untitled Sans/UntitledSans-Regular.otf -------------------------------------------------------------------------------- /match/public/fonts/Untitled Sans/UntitledSans-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/fonts/Untitled Sans/UntitledSans-RegularItalic.otf -------------------------------------------------------------------------------- /match/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/next.svg -------------------------------------------------------------------------------- /match/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/public/vercel.svg -------------------------------------------------------------------------------- /match/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/src/app/favicon.ico -------------------------------------------------------------------------------- /match/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/src/app/globals.css -------------------------------------------------------------------------------- /match/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/src/app/layout.tsx -------------------------------------------------------------------------------- /match/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/src/app/page.tsx -------------------------------------------------------------------------------- /match/src/components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/src/components/Search.tsx -------------------------------------------------------------------------------- /match/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /match/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/src/components/ui/input.tsx -------------------------------------------------------------------------------- /match/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/src/lib/utils.ts -------------------------------------------------------------------------------- /match/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/tailwind.config.ts -------------------------------------------------------------------------------- /match/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/match/tsconfig.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/requirements.txt -------------------------------------------------------------------------------- /summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/summarize.py -------------------------------------------------------------------------------- /summarize_graph_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/summarize_graph_data.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Socratica-Org/matchmaking/HEAD/utils.py --------------------------------------------------------------------------------