├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .node-version ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── lefthook.yml ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── scripts └── lint │ ├── eslint │ └── prettier ├── src ├── components │ ├── atoms │ │ └── Icon │ │ │ └── index.tsx │ └── organisms │ │ ├── Footer │ │ └── index.tsx │ │ └── Header │ │ └── index.tsx ├── hooks │ ├── useBaseUrl.ts │ └── useUrlBuilder.ts ├── layouts │ └── DefaultLayout │ │ └── index.tsx ├── libs │ └── fonts.ts ├── pages │ ├── _app.tsx │ ├── api │ │ ├── _lib │ │ │ ├── chromium.ts │ │ │ ├── parser.ts │ │ │ └── template.ts │ │ └── index.ts │ └── index.tsx ├── styles │ └── global.css └── templates │ └── IndexPage │ ├── Component.tsx │ ├── Container.tsx │ ├── atoms │ └── SocialButton │ │ └── index.tsx │ ├── index.ts │ ├── molecules │ ├── ClipboardButton │ │ ├── Component.tsx │ │ └── index.tsx │ ├── CodeBlock │ │ └── index.tsx │ ├── FontSelector │ │ └── index.tsx │ └── Input │ │ └── index.tsx │ └── organisms │ ├── Clipboard │ └── index.tsx │ └── Form │ └── index.tsx ├── tailwind.config.js ├── tsconfig.json ├── vercel.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 14.16.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@shopify/prettier-config" 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/README.md -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/lefthook.yml -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/postcss.config.js -------------------------------------------------------------------------------- /scripts/lint/eslint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/scripts/lint/eslint -------------------------------------------------------------------------------- /scripts/lint/prettier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/scripts/lint/prettier -------------------------------------------------------------------------------- /src/components/atoms/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/components/atoms/Icon/index.tsx -------------------------------------------------------------------------------- /src/components/organisms/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/components/organisms/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/organisms/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/components/organisms/Header/index.tsx -------------------------------------------------------------------------------- /src/hooks/useBaseUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/hooks/useBaseUrl.ts -------------------------------------------------------------------------------- /src/hooks/useUrlBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/hooks/useUrlBuilder.ts -------------------------------------------------------------------------------- /src/layouts/DefaultLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/layouts/DefaultLayout/index.tsx -------------------------------------------------------------------------------- /src/libs/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/libs/fonts.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/_lib/chromium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/pages/api/_lib/chromium.ts -------------------------------------------------------------------------------- /src/pages/api/_lib/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/pages/api/_lib/parser.ts -------------------------------------------------------------------------------- /src/pages/api/_lib/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/pages/api/_lib/template.ts -------------------------------------------------------------------------------- /src/pages/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/pages/api/index.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/templates/IndexPage/Component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/Component.tsx -------------------------------------------------------------------------------- /src/templates/IndexPage/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/Container.tsx -------------------------------------------------------------------------------- /src/templates/IndexPage/atoms/SocialButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/atoms/SocialButton/index.tsx -------------------------------------------------------------------------------- /src/templates/IndexPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/index.ts -------------------------------------------------------------------------------- /src/templates/IndexPage/molecules/ClipboardButton/Component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/molecules/ClipboardButton/Component.tsx -------------------------------------------------------------------------------- /src/templates/IndexPage/molecules/ClipboardButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/molecules/ClipboardButton/index.tsx -------------------------------------------------------------------------------- /src/templates/IndexPage/molecules/CodeBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/molecules/CodeBlock/index.tsx -------------------------------------------------------------------------------- /src/templates/IndexPage/molecules/FontSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/molecules/FontSelector/index.tsx -------------------------------------------------------------------------------- /src/templates/IndexPage/molecules/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/molecules/Input/index.tsx -------------------------------------------------------------------------------- /src/templates/IndexPage/organisms/Clipboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/organisms/Clipboard/index.tsx -------------------------------------------------------------------------------- /src/templates/IndexPage/organisms/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/src/templates/IndexPage/organisms/Form/index.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2 3 | } 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnO2WMaN/tohohoify/HEAD/yarn.lock --------------------------------------------------------------------------------