Skip to content

Latest commit

 

History

History

README.md

General Translation

Documentation · Report Bug

gt-next

Automatic i18n for Next.js.

Installation

npm install gt-next
npm install gt --save-dev

Quick Start

npx gt init
import { T } from 'gt-next';

export default function Page() {
  return (
    <T>
      <p>This gets translated automatically.</p>
    </T>
  );
}

See the full documentation for guides and API reference.