├── .eslintrc.json ├── .gitignore ├── README.md ├── messages ├── en.json └── id.json ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── [locale] │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── layout.tsx │ ├── not-found.tsx │ └── page.tsx ├── components │ ├── footer.tsx │ ├── header.tsx │ └── local-switcher.tsx ├── i18n.ts └── middleware.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/README.md -------------------------------------------------------------------------------- /messages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/messages/en.json -------------------------------------------------------------------------------- /messages/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/messages/id.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/[locale]/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/app/[locale]/globals.css -------------------------------------------------------------------------------- /src/app/[locale]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/app/[locale]/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/app/[locale]/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/components/footer.tsx -------------------------------------------------------------------------------- /src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/components/header.tsx -------------------------------------------------------------------------------- /src/components/local-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/components/local-switcher.tsx -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candraKriswinarto/nextlingo/HEAD/tsconfig.json --------------------------------------------------------------------------------