├── .eslintrc.json ├── .github └── workflows │ └── nextjs.yml ├── .gitignore ├── .prettierrc.js ├── README.md ├── assets └── Togothon-logo.png ├── next.config.js ├── package.json ├── public ├── favicon.png ├── googleeaefbc201f4580d4.html └── logo.png ├── src ├── global.d.ts ├── markdown │ ├── about.md │ ├── schedule.md │ └── tools.md ├── pages │ ├── _app.tsx │ ├── _document.tsx │ └── index.tsx └── styles │ ├── Home.module.css │ └── globals.css └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/nextjs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/.github/workflows/nextjs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/README.md -------------------------------------------------------------------------------- /assets/Togothon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/assets/Togothon-logo.png -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/googleeaefbc201f4580d4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/public/googleeaefbc201f4580d4.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/public/logo.png -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.md"; 2 | -------------------------------------------------------------------------------- /src/markdown/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/src/markdown/about.md -------------------------------------------------------------------------------- /src/markdown/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/src/markdown/schedule.md -------------------------------------------------------------------------------- /src/markdown/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/src/markdown/tools.md -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/Home.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbcls/Togothon/HEAD/tsconfig.json --------------------------------------------------------------------------------