gitextract_fkoby6mu/ ├── .gitignore ├── LICENSE ├── NOTICE.txt ├── README.md ├── README_CN.md ├── app/ │ ├── .gitignore │ ├── components/ │ │ ├── Footer.tsx │ │ ├── ItemsTileGrid.tsx │ │ ├── Layout.tsx │ │ ├── LogoImage.tsx │ │ ├── Nav.tsx │ │ └── SectionContainer.tsx │ ├── lib/ │ │ ├── supabase.ts │ │ └── theme.tsx │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages/ │ │ ├── _app.tsx │ │ ├── api/ │ │ │ └── embedding_search.ts │ │ └── index.tsx │ ├── postcss.config.js │ ├── prettier.config.js │ ├── styles/ │ │ └── globals.css │ ├── tailwind.config.js │ ├── tsconfig.json │ └── types/ │ └── items.ts └── supabase/ └── migrations/ └── 20240506_init.sql