chore: transfer repo

This commit is contained in:
Danijel
2026-01-19 20:21:14 +01:00
commit 7d2fb0c737
213 changed files with 18085 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
'use client';
import { NextIntlClientProvider } from 'next-intl';
import { ReactNode } from 'react';
type IntlProviderProps = {
locale: string;
children: ReactNode;
messages: any;
};
export function IntlProvider({ locale, messages, children }: IntlProviderProps) {
return (
<NextIntlClientProvider locale={locale} messages={messages}>
{children}
</NextIntlClientProvider>
);
}