Skip to content

Commit 6fafb52

Browse files
authored
Merge pull request #62 from nafistiham/describing-the-ui
Describing the UI
2 parents 02d6099 + 0eb0a6e commit 6fafb52

File tree

3 files changed

+50
-50
lines changed

3 files changed

+50
-50
lines changed

src/components/Layout/Page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export function Page({children, toc, routeTree, meta, section}: PageProps) {
153153
<>
154154
<div className="flex flex-col items-center m-4 p-4">
155155
<p className="font-bold text-primary dark:text-primary-dark text-lg mb-4">
156-
How do you like these docs?
156+
এই ডকুমেন্টেশনগুলো আপনার কতটুকু ভাল লাগছে?
157157
</p>
158158
<div>
159159
<ButtonLink
@@ -162,7 +162,7 @@ export function Page({children, toc, routeTree, meta, section}: PageProps) {
162162
type="primary"
163163
size="md"
164164
target="_blank">
165-
Take our survey!
165+
আমাদের সার্ভেতে অংশগ্রহণ করুন!
166166
<IconNavArrow
167167
displayDirection="right"
168168
className="inline ml-1"

src/components/MDX/MDXComponents.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ function LearnMore({
113113
<section className="p-8 mt-16 mb-16 flex flex-row shadow-inner-border dark:shadow-inner-border-dark justify-between items-center bg-card dark:bg-card-dark rounded-2xl">
114114
<div className="flex-col">
115115
<h2 className="text-primary font-display dark:text-primary-dark font-bold text-2xl leading-tight">
116-
Ready to learn this topic?
116+
এই বিষয়ে শিখতে প্রস্তুত তো?
117117
</h2>
118118
{children}
119119
{path ? (
@@ -122,7 +122,7 @@ function LearnMore({
122122
label="Read More"
123123
href={path}
124124
type="primary">
125-
Read More
125+
আরো পড়ুন
126126
<IconNavArrow displayDirection="right" className="inline ml-1" />
127127
</ButtonLink>
128128
) : null}
@@ -173,7 +173,7 @@ function YouWillLearn({
173173
children: any;
174174
isChapter?: boolean;
175175
}) {
176-
let title = isChapter ? 'এই অংশে যা রয়েছে' : 'আপনি যা শিখবেন';
176+
let title = isChapter ? 'এই অধ্যায়ে যা রয়েছে' : 'যা যা আপনি শিখবেন';
177177
return <SimpleCallout title={title}>{children}</SimpleCallout>;
178178
}
179179

0 commit comments

Comments
 (0)