├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── src ├── components │ ├── bottom_nav.tsx │ ├── button │ │ ├── Switcher.tsx │ │ └── commonbutton.tsx │ ├── confirmModal.tsx │ ├── header.module.css │ ├── header.tsx │ ├── keymodal.tsx │ ├── landingfooter.tsx │ ├── landingheader.tsx │ ├── layout.tsx │ ├── referModal.tsx │ ├── sidebar.module.css │ ├── sidebar.tsx │ ├── sidebar_right.tsx │ ├── walletmodal.tsx │ └── withDrawModal.tsx ├── constants │ ├── auth.ts │ └── setAuthToken.ts ├── contexts │ ├── SearchProvider.tsx │ ├── SocketProvider.tsx │ └── UserProvider.tsx ├── hooks │ └── useDarkMode.tsx ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ └── auth │ │ │ └── [...nextauth].js │ ├── home │ │ ├── [...post].tsx │ │ ├── index.module.css │ │ ├── index.tsx │ │ ├── post.tsx │ │ └── postcard.tsx │ ├── inbox │ │ ├── [room].tsx │ │ ├── index.module.css │ │ ├── index.tsx │ │ ├── message.tsx │ │ └── messagecard.tsx │ ├── index.tsx │ ├── keys │ │ ├── [key].tsx │ │ ├── card.tsx │ │ ├── cardgroup.tsx │ │ ├── index.module.css │ │ ├── index.tsx │ │ ├── keycard.tsx │ │ ├── postcard.tsx │ │ ├── search_nav.tsx │ │ └── tabbar.tsx │ ├── loading │ │ └── index.tsx │ ├── notifications │ │ ├── index.module.css │ │ ├── index.tsx │ │ ├── notifi.tsx │ │ └── notification_group.tsx │ ├── search │ │ ├── card.tsx │ │ ├── cardgroup.tsx │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── search_nav.tsx │ └── wallet │ │ ├── index.module.css │ │ ├── index.tsx │ │ ├── walletcard.tsx │ │ ├── walletinfo.tsx │ │ └── walletstatus.tsx └── styles │ └── globals.css ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/components/bottom_nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/bottom_nav.tsx -------------------------------------------------------------------------------- /src/components/button/Switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/button/Switcher.tsx -------------------------------------------------------------------------------- /src/components/button/commonbutton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/button/commonbutton.tsx -------------------------------------------------------------------------------- /src/components/confirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/confirmModal.tsx -------------------------------------------------------------------------------- /src/components/header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/header.module.css -------------------------------------------------------------------------------- /src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/header.tsx -------------------------------------------------------------------------------- /src/components/keymodal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/keymodal.tsx -------------------------------------------------------------------------------- /src/components/landingfooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/landingfooter.tsx -------------------------------------------------------------------------------- /src/components/landingheader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/landingheader.tsx -------------------------------------------------------------------------------- /src/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/layout.tsx -------------------------------------------------------------------------------- /src/components/referModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/referModal.tsx -------------------------------------------------------------------------------- /src/components/sidebar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/sidebar.module.css -------------------------------------------------------------------------------- /src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/sidebar.tsx -------------------------------------------------------------------------------- /src/components/sidebar_right.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/sidebar_right.tsx -------------------------------------------------------------------------------- /src/components/walletmodal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/walletmodal.tsx -------------------------------------------------------------------------------- /src/components/withDrawModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/components/withDrawModal.tsx -------------------------------------------------------------------------------- /src/constants/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/constants/auth.ts -------------------------------------------------------------------------------- /src/constants/setAuthToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/constants/setAuthToken.ts -------------------------------------------------------------------------------- /src/contexts/SearchProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/contexts/SearchProvider.tsx -------------------------------------------------------------------------------- /src/contexts/SocketProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/contexts/SocketProvider.tsx -------------------------------------------------------------------------------- /src/contexts/UserProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/contexts/UserProvider.tsx -------------------------------------------------------------------------------- /src/hooks/useDarkMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/hooks/useDarkMode.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/api/auth/[...nextauth].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/api/auth/[...nextauth].js -------------------------------------------------------------------------------- /src/pages/home/[...post].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/home/[...post].tsx -------------------------------------------------------------------------------- /src/pages/home/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/home/index.module.css -------------------------------------------------------------------------------- /src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/pages/home/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/home/post.tsx -------------------------------------------------------------------------------- /src/pages/home/postcard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/home/postcard.tsx -------------------------------------------------------------------------------- /src/pages/inbox/[room].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/inbox/[room].tsx -------------------------------------------------------------------------------- /src/pages/inbox/index.module.css: -------------------------------------------------------------------------------- 1 | .inputtype{ 2 | background-position-x: right center; 3 | } -------------------------------------------------------------------------------- /src/pages/inbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/inbox/index.tsx -------------------------------------------------------------------------------- /src/pages/inbox/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/inbox/message.tsx -------------------------------------------------------------------------------- /src/pages/inbox/messagecard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/inbox/messagecard.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/keys/[key].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/keys/[key].tsx -------------------------------------------------------------------------------- /src/pages/keys/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/keys/card.tsx -------------------------------------------------------------------------------- /src/pages/keys/cardgroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/keys/cardgroup.tsx -------------------------------------------------------------------------------- /src/pages/keys/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/keys/index.module.css -------------------------------------------------------------------------------- /src/pages/keys/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/keys/index.tsx -------------------------------------------------------------------------------- /src/pages/keys/keycard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/keys/keycard.tsx -------------------------------------------------------------------------------- /src/pages/keys/postcard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/keys/postcard.tsx -------------------------------------------------------------------------------- /src/pages/keys/search_nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/keys/search_nav.tsx -------------------------------------------------------------------------------- /src/pages/keys/tabbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/keys/tabbar.tsx -------------------------------------------------------------------------------- /src/pages/loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/loading/index.tsx -------------------------------------------------------------------------------- /src/pages/notifications/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/notifications/index.module.css -------------------------------------------------------------------------------- /src/pages/notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/notifications/index.tsx -------------------------------------------------------------------------------- /src/pages/notifications/notifi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/notifications/notifi.tsx -------------------------------------------------------------------------------- /src/pages/notifications/notification_group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/notifications/notification_group.tsx -------------------------------------------------------------------------------- /src/pages/search/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/search/card.tsx -------------------------------------------------------------------------------- /src/pages/search/cardgroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/search/cardgroup.tsx -------------------------------------------------------------------------------- /src/pages/search/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/search/index.module.css -------------------------------------------------------------------------------- /src/pages/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/search/index.tsx -------------------------------------------------------------------------------- /src/pages/search/search_nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/search/search_nav.tsx -------------------------------------------------------------------------------- /src/pages/wallet/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/wallet/index.module.css -------------------------------------------------------------------------------- /src/pages/wallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/wallet/index.tsx -------------------------------------------------------------------------------- /src/pages/wallet/walletcard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/wallet/walletcard.tsx -------------------------------------------------------------------------------- /src/pages/wallet/walletinfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/wallet/walletinfo.tsx -------------------------------------------------------------------------------- /src/pages/wallet/walletstatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/pages/wallet/walletstatus.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3batman/Social-Fi/HEAD/yarn.lock --------------------------------------------------------------------------------