Skip to content

Commit 46d371c

Browse files
authored
Merge pull request #3 from lxmarinkovic/quickstart
quickstart-initial
2 parents f6dbc2c + fd15af2 commit 46d371c

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-
Learn
285+
Naučite
286286
</NavItem>
287287
<NavItem
288288
isActive={section === 'reference'}
289289
url="/reference/react">
290-
Reference
290+
Referenca
291291
</NavItem>
292292
<NavItem isActive={section === 'community'} url="/community">
293-
Community
293+
Zajednica
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-
Learn
364+
Naučite
365365
</NavItem>
366366
<NavItem
367367
isActive={section === 'reference'}
368368
url="/reference/react">
369-
Reference
369+
Referenca
370370
</NavItem>
371371
<NavItem
372372
isActive={section === 'community'}
373373
url="/community">
374-
Community
374+
Zajednica
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 ? 'In this chapter' : 'You will learn';
176+
let title = isChapter ? 'U ovom poglavlju' : 'Naučićete';
177177
return <SimpleCallout title={title}>{children}</SimpleCallout>;
178178
}
179179

0 commit comments

Comments
 (0)