Internationalization for the AI Era

Write code once, translate to any language, deploy globally. A single translation file is needed.

components/easy_as_backtick.tsx
import { g } from '@/gringow/gringow-react';

export function Welcome() {
  return (
    <div>
      <h1>{g`Welcome to Gringow!`}</h1>
      <p>{g`AI-powered i18n that keeps it simple`}</p>
    </div>
  );
}