Skip to content

Commit 07628c3

Browse files
authored
Revert "quickstart-initial"
1 parent 46d371c commit 07628c3

File tree

4 files changed

+121
-121
lines changed

4 files changed

+121
-121
lines changed

Diff for: src/components/Layout/TopNav/TopNav.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -282,15 +282,15 @@ export default function TopNav({
282282
<div className="text-base justify-center items-center gap-1.5 flex 3xl:flex-1 flex-row 3xl:justify-end">
283283
<div className="mx-2.5 gap-1.5 hidden lg:flex">
284284
<NavItem isActive={section === 'learn'} url="/learn">
285-
Naučite
285+
Learn
286286
</NavItem>
287287
<NavItem
288288
isActive={section === 'reference'}
289289
url="/reference/react">
290-
Referenca
290+
Reference
291291
</NavItem>
292292
<NavItem isActive={section === 'community'} url="/community">
293-
Zajednica
293+
Community
294294
</NavItem>
295295
<NavItem isActive={section === 'blog'} url="/blog">
296296
Blog
@@ -361,17 +361,17 @@ export default function TopNav({
361361
<Suspense fallback={null}>
362362
<div className="pl-3 xs:pl-5 xs:gap-0.5 xs:text-base overflow-x-auto flex flex-row lg:hidden text-base font-bold text-secondary dark:text-secondary-dark">
363363
<NavItem isActive={section === 'learn'} url="/learn">
364-
Naučite
364+
Learn
365365
</NavItem>
366366
<NavItem
367367
isActive={section === 'reference'}
368368
url="/reference/react">
369-
Referenca
369+
Reference
370370
</NavItem>
371371
<NavItem
372372
isActive={section === 'community'}
373373
url="/community">
374-
Zajednica
374+
Community
375375
</NavItem>
376376
<NavItem isActive={section === 'blog'} url="/blog">
377377
Blog

Diff for: src/components/MDX/MDXComponents.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ function YouWillLearn({
173173
children: any;
174174
isChapter?: boolean;
175175
}) {
176-
let title = isChapter ? 'U ovom poglavlju' : 'Naučićete';
176+
let title = isChapter ? 'In this chapter' : 'You will learn';
177177
return <SimpleCallout title={title}>{children}</SimpleCallout>;
178178
}
179179

0 commit comments

Comments
 (0)