File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export const DocsPageFooter = memo<DocsPageFooterProps>(
30
30
< div className = "max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-4 py-4 md:py-12" >
31
31
{ prevRoute ?. path ? (
32
32
< FooterLink
33
- type = "Previous "
33
+ type = "পূর্ববর্তী পেইজ "
34
34
title = { prevRoute . title }
35
35
href = { prevRoute . path }
36
36
/>
@@ -40,7 +40,7 @@ export const DocsPageFooter = memo<DocsPageFooterProps>(
40
40
41
41
{ nextRoute ?. path ? (
42
42
< FooterLink
43
- type = "Next "
43
+ type = "পরবর্তী পেইজ "
44
44
title = { nextRoute . title }
45
45
href = { nextRoute . path }
46
46
/>
@@ -63,20 +63,21 @@ function FooterLink({
63
63
} : {
64
64
href : string ;
65
65
title : string ;
66
- type : 'Previous ' | 'Next ' ;
66
+ type : 'পূর্ববর্তী পেইজ ' | 'পরবর্তী পেইজ ' ;
67
67
} ) {
68
68
return (
69
69
< NextLink
70
70
href = { href }
71
71
className = { cn (
72
72
'flex gap-x-4 md:gap-x-6 items-center w-full md:w-80 px-4 md:px-5 py-6 border-2 border-transparent text-base leading-base text-link dark:text-link-dark rounded-lg group focus:text-link dark:focus:text-link-dark focus:bg-highlight focus:border-link dark:focus:bg-highlight-dark dark:focus:border-link-dark focus:border-opacity-100 focus:border-2 focus:ring-1 focus:ring-offset-4 focus:ring-blue-40 active:ring-0 active:ring-offset-0 hover:bg-gray-5 dark:hover:bg-gray-80' ,
73
73
{
74
- 'flex-row-reverse justify-self-end text-right' : type === 'Next' ,
74
+ 'flex-row-reverse justify-self-end text-right' :
75
+ type === 'পরবর্তী পেইজ' ,
75
76
}
76
77
) } >
77
78
< IconNavArrow
78
79
className = "text-tertiary dark:text-tertiary-dark inline group-focus:text-link dark:group-focus:text-link-dark"
79
- displayDirection = { type === 'Previous ' ? 'left' : 'right' }
80
+ displayDirection = { type === 'পূর্ববর্তী পেইজ ' ? 'left' : 'right' }
80
81
/>
81
82
< span >
82
83
< span className = "block no-underline text-sm tracking-wide text-secondary dark:text-secondary-dark uppercase font-bold group-focus:text-link dark:group-focus:text-link-dark group-focus:text-opacity-100" >
You can’t perform that action at this time.
0 commit comments