├── .env.example ├── .gitignore ├── README.md ├── auth.config.ts ├── components ├── Card.tsx └── Header.tsx ├── hooks └── useQueryUser.ts ├── next-env.d.ts ├── package.json ├── pages ├── _app.tsx ├── api │ ├── auth │ │ └── [...thirdweb].ts │ └── user.ts ├── create.tsx ├── index.tsx └── user │ └── [address].tsx ├── prisma ├── prisma.ts ├── schema.prisma └── user.ts ├── public ├── avatar.svg ├── favicon.ico └── thirdweb.svg ├── styles ├── Theme.module.css └── globals.css ├── tsconfig.json └── types ├── User.ts └── index.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/README.md -------------------------------------------------------------------------------- /auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/auth.config.ts -------------------------------------------------------------------------------- /components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/components/Card.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /hooks/useQueryUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/hooks/useQueryUser.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/auth/[...thirdweb].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/pages/api/auth/[...thirdweb].ts -------------------------------------------------------------------------------- /pages/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/pages/api/user.ts -------------------------------------------------------------------------------- /pages/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/pages/create.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/user/[address].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/pages/user/[address].tsx -------------------------------------------------------------------------------- /prisma/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/prisma/prisma.ts -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /prisma/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/prisma/user.ts -------------------------------------------------------------------------------- /public/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/public/avatar.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/public/thirdweb.svg -------------------------------------------------------------------------------- /styles/Theme.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/styles/Theme.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/creator-platform/HEAD/types/User.ts -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./User"; 2 | --------------------------------------------------------------------------------