add referrals page
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "no-copy-frontend",
|
"name": "no-copy-frontend",
|
||||||
"version": "0.16.0",
|
"version": "0.17.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev -p 2999",
|
"dev": "next dev -p 2999",
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
import { useTranslations } from 'next-intl';
|
||||||
|
import { Suspense } from 'react';
|
||||||
|
import PageTitle from '@/app/ui/page-title';
|
||||||
|
|
||||||
|
export default function Page() {
|
||||||
|
const t = useTranslations('Global');
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Suspense fallback={<>...</>}>
|
||||||
|
<PageTitle title="refferal-program">
|
||||||
|
</PageTitle>
|
||||||
|
<div>
|
||||||
|
refferals
|
||||||
|
</div>
|
||||||
|
</Suspense>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -30,7 +30,7 @@ export default function NavLinks() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: t('referral-program'),
|
name: t('referral-program'),
|
||||||
href: '/pages/emptypage',
|
href: '/pages/refferals',
|
||||||
img: 'M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63A1.5 1.5 0 0 0 18.54 8H16c-.8 0-1.54.37-2 1l-3 4v2h2l2.54-3.82L16.5 18H20z'
|
img: 'M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63A1.5 1.5 0 0 0 18.54 8H16c-.8 0-1.54.37-2 1l-3 4v2h2l2.54-3.82L16.5 18H20z'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -161,7 +161,8 @@
|
|||||||
"error": "Error",
|
"error": "Error",
|
||||||
"failed-to-download-file": "Failed to download file",
|
"failed-to-download-file": "Failed to download file",
|
||||||
"file-is-downloading": "The file is downloading",
|
"file-is-downloading": "The file is downloading",
|
||||||
"status": "status"
|
"status": "status",
|
||||||
|
"refferal-program": "Referral program"
|
||||||
},
|
},
|
||||||
"Login-register-form": {
|
"Login-register-form": {
|
||||||
"and": "and",
|
"and": "and",
|
||||||
|
|||||||
@@ -161,7 +161,8 @@
|
|||||||
"error": "Ошбка",
|
"error": "Ошбка",
|
||||||
"failed-to-download-file": "Не удалось скачать файл",
|
"failed-to-download-file": "Не удалось скачать файл",
|
||||||
"file-is-downloading": "Скачивается файл",
|
"file-is-downloading": "Скачивается файл",
|
||||||
"status": "статус"
|
"status": "статус",
|
||||||
|
"refferal-program": "Реферальная программа"
|
||||||
},
|
},
|
||||||
"Login-register-form": {
|
"Login-register-form": {
|
||||||
"and": "и",
|
"and": "и",
|
||||||
|
|||||||
Reference in New Issue
Block a user