├── .eslintrc.json ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .husky ├── pre-commit └── pre-push ├── .lintstagedrc.js ├── .prettierrc.json ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── bun.lockb ├── components.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public └── akeome-site.png ├── src ├── app │ ├── icon.png │ ├── layout.tsx │ ├── opengraph-image.png │ └── page.tsx ├── components │ ├── common │ │ ├── Akeome │ │ │ ├── Akeome.tsx │ │ │ └── index.ts │ │ ├── Fireworks │ │ │ ├── Fireworks.tsx │ │ │ └── index.ts │ │ ├── Footer │ │ │ ├── Footer.tsx │ │ │ └── index.ts │ │ └── LanguageSelector │ │ │ ├── LanguageSelector.tsx │ │ │ └── index.ts │ ├── layout │ │ └── MainLayout │ │ │ ├── MainLayout.tsx │ │ │ └── index.ts │ ├── page │ │ └── AkeomePage │ │ │ ├── AkeomePage.tsx │ │ │ └── index.ts │ └── ui │ │ └── select.tsx ├── constants │ └── akeome.const.ts ├── styles │ └── globals.css ├── types │ └── Akeome.types.ts └── utils │ ├── GenerateAkeome.ts │ └── utils.ts ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | bunx lint-staged 5 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/akeome-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/public/akeome-site.png -------------------------------------------------------------------------------- /src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/app/icon.png -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/common/Akeome/Akeome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/common/Akeome/Akeome.tsx -------------------------------------------------------------------------------- /src/components/common/Akeome/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/common/Akeome/index.ts -------------------------------------------------------------------------------- /src/components/common/Fireworks/Fireworks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/common/Fireworks/Fireworks.tsx -------------------------------------------------------------------------------- /src/components/common/Fireworks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/common/Fireworks/index.ts -------------------------------------------------------------------------------- /src/components/common/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/common/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/common/Footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/common/Footer/index.ts -------------------------------------------------------------------------------- /src/components/common/LanguageSelector/LanguageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/common/LanguageSelector/LanguageSelector.tsx -------------------------------------------------------------------------------- /src/components/common/LanguageSelector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/common/LanguageSelector/index.ts -------------------------------------------------------------------------------- /src/components/layout/MainLayout/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/layout/MainLayout/MainLayout.tsx -------------------------------------------------------------------------------- /src/components/layout/MainLayout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/layout/MainLayout/index.ts -------------------------------------------------------------------------------- /src/components/page/AkeomePage/AkeomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/page/AkeomePage/AkeomePage.tsx -------------------------------------------------------------------------------- /src/components/page/AkeomePage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/page/AkeomePage/index.ts -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/constants/akeome.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/constants/akeome.const.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/Akeome.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/types/Akeome.types.ts -------------------------------------------------------------------------------- /src/utils/GenerateAkeome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/utils/GenerateAkeome.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imaimai17468/akeome/HEAD/tsconfig.json --------------------------------------------------------------------------------