├── .eslintignore ├── .eslintrc.cjs ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .storybook ├── main.ts └── preview.tsx ├── .stylelintignore ├── .stylelintrc.json ├── .yarn └── releases │ └── yarn-4.0.1.cjs ├── .yarnrc.yml ├── LICENSE ├── docs ├── CODE_OF_CONDUCT.en.md ├── CODE_OF_CONDUCT.md ├── README.en.md ├── README.md └── SECURITY.md ├── jest.config.cjs ├── jest.setup.cjs ├── next-env.d.ts ├── next.config.js ├── next.config.mjs ├── package.json ├── postcss.config.cjs ├── public └── favicon.ico ├── src ├── app │ ├── globals.scss │ ├── layout.tsx │ ├── page.module.scss │ └── page.tsx └── components │ ├── ColorSchemeToggle │ └── ColorSchemeToggle.tsx │ └── Welcome │ ├── Welcome.module.css │ ├── Welcome.story.tsx │ ├── Welcome.test.tsx │ └── Welcome.tsx ├── test-utils ├── index.ts └── render.tsx ├── theme.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .next -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | .next 2 | out 3 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.0.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/.yarn/releases/yarn-4.0.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/docs/CODE_OF_CONDUCT.en.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/docs/README.en.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /jest.setup.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/jest.setup.cjs -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/next.config.js -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.scss: -------------------------------------------------------------------------------- 1 | main { 2 | padding: 1em; 3 | } -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/src/app/page.module.scss -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/ColorSchemeToggle/ColorSchemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/src/components/ColorSchemeToggle/ColorSchemeToggle.tsx -------------------------------------------------------------------------------- /src/components/Welcome/Welcome.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/src/components/Welcome/Welcome.module.css -------------------------------------------------------------------------------- /src/components/Welcome/Welcome.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/src/components/Welcome/Welcome.story.tsx -------------------------------------------------------------------------------- /src/components/Welcome/Welcome.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/src/components/Welcome/Welcome.test.tsx -------------------------------------------------------------------------------- /src/components/Welcome/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/src/components/Welcome/Welcome.tsx -------------------------------------------------------------------------------- /test-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/test-utils/index.ts -------------------------------------------------------------------------------- /test-utils/render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/test-utils/render.tsx -------------------------------------------------------------------------------- /theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/theme.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-creative-club/disaster-posts/HEAD/yarn.lock --------------------------------------------------------------------------------