├── .czrc ├── .github └── workflows │ ├── release-please.yml │ ├── release.yml │ └── update-license.yml ├── .gitignore ├── .husky ├── commit-msg ├── pre-commit ├── pre-push └── prepare-commit-msg ├── .lintstagedrc.json ├── .npmrc ├── .nvmrc ├── .versionrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── biome.json ├── commitlint.config.js ├── e2e └── home.spec.ts ├── netlify.toml ├── next-env.d.ts ├── next-sitemap.config.js ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── public ├── 404 Error-pana.svg ├── Launching-amico.svg ├── Under construction-amico.svg ├── chakra-ui-logomark-colored.svg ├── next-app-chakra-ts.png ├── nextjs-black-logo.svg ├── nextjs-icon-dark.svg ├── nextjs-icon-light.svg ├── ts-logo-512.svg └── vercel.svg ├── references.md ├── renovate.json ├── src ├── app │ ├── favicon.ico │ ├── layout.tsx │ ├── manifest.ts │ ├── not-found.ts │ └── page.ts ├── components │ └── ui │ │ ├── button.tsx │ │ ├── color-mode.tsx │ │ ├── provider.tsx │ │ └── tooltip.tsx └── lib │ ├── layout │ ├── components │ │ ├── footer.tsx │ │ └── header.tsx │ └── index.tsx │ ├── pages │ ├── 404 │ │ └── index.tsx │ └── home │ │ ├── components │ │ ├── cta-section.tsx │ │ ├── helper-image.tsx │ │ ├── some-image.tsx │ │ └── some-text.tsx │ │ └── index.tsx │ └── styles │ ├── globals.css │ └── theme.ts ├── tsconfig.json ├── turbo.json ├── vercel.json └── wrangler.toml /.czrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/.czrc -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update-license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/.github/workflows/update-license.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | pnpm commitlint --edit "$1" 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm lint-staged 2 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | pnpm check:turbo 2 | -------------------------------------------------------------------------------- /.husky/prepare-commit-msg: -------------------------------------------------------------------------------- 1 | pnpm cz --hook || true 2 | -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | enable-pre-post-scripts=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v24.11.1 -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/.versionrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/biome.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /e2e/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/e2e/home.spec.ts -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/netlify.toml -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/404 Error-pana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/public/404 Error-pana.svg -------------------------------------------------------------------------------- /public/Launching-amico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/public/Launching-amico.svg -------------------------------------------------------------------------------- /public/Under construction-amico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/public/Under construction-amico.svg -------------------------------------------------------------------------------- /public/chakra-ui-logomark-colored.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/public/chakra-ui-logomark-colored.svg -------------------------------------------------------------------------------- /public/next-app-chakra-ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/public/next-app-chakra-ts.png -------------------------------------------------------------------------------- /public/nextjs-black-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/public/nextjs-black-logo.svg -------------------------------------------------------------------------------- /public/nextjs-icon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/public/nextjs-icon-dark.svg -------------------------------------------------------------------------------- /public/nextjs-icon-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/public/nextjs-icon-light.svg -------------------------------------------------------------------------------- /public/ts-logo-512.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/public/ts-logo-512.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/references.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/renovate.json -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/app/manifest.ts -------------------------------------------------------------------------------- /src/app/not-found.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/app/not-found.ts -------------------------------------------------------------------------------- /src/app/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/app/page.ts -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/color-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/components/ui/color-mode.tsx -------------------------------------------------------------------------------- /src/components/ui/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/components/ui/provider.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/lib/layout/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/lib/layout/components/footer.tsx -------------------------------------------------------------------------------- /src/lib/layout/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/lib/layout/components/header.tsx -------------------------------------------------------------------------------- /src/lib/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/lib/layout/index.tsx -------------------------------------------------------------------------------- /src/lib/pages/404/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/lib/pages/404/index.tsx -------------------------------------------------------------------------------- /src/lib/pages/home/components/cta-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/lib/pages/home/components/cta-section.tsx -------------------------------------------------------------------------------- /src/lib/pages/home/components/helper-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/lib/pages/home/components/helper-image.tsx -------------------------------------------------------------------------------- /src/lib/pages/home/components/some-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/lib/pages/home/components/some-image.tsx -------------------------------------------------------------------------------- /src/lib/pages/home/components/some-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/lib/pages/home/components/some-text.tsx -------------------------------------------------------------------------------- /src/lib/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/lib/pages/home/index.tsx -------------------------------------------------------------------------------- /src/lib/styles/globals.css: -------------------------------------------------------------------------------- 1 | /* Global Styling here */ 2 | -------------------------------------------------------------------------------- /src/lib/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/src/lib/styles/theme.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/turbo.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinusnathaniel/nextarter-chakra/HEAD/vercel.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- 1 | [vars] 2 | COREPACK_INTEGRITY_KEYS="0" --------------------------------------------------------------------------------