diff options
| author | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2025-08-25 11:13:20 +0200 |
|---|---|---|
| committer | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2025-08-25 11:13:20 +0200 |
| commit | ccd08bc0f03cb59b351c19d78ac0f937a5270368 (patch) | |
| tree | ad6283f389e0bb84a8c1609e8aa26a4383f31279 /frontend/src/pages/Rules/Rules.tsx | |
| parent | Removed unnecessary imports (diff) | |
| download | lphub-ccd08bc0f03cb59b351c19d78ac0f937a5270368.tar.gz lphub-ccd08bc0f03cb59b351c19d78ac0f937a5270368.tar.bz2 lphub-ccd08bc0f03cb59b351c19d78ac0f937a5270368.zip | |
Moved breadcrum navigation into its own component
Diffstat (limited to 'frontend/src/pages/Rules/Rules.tsx')
| -rw-r--r-- | frontend/src/pages/Rules/Rules.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/pages/Rules/Rules.tsx b/frontend/src/pages/Rules/Rules.tsx index 9c7885c..20d301c 100644 --- a/frontend/src/pages/Rules/Rules.tsx +++ b/frontend/src/pages/Rules/Rules.tsx | |||
| @@ -25,12 +25,12 @@ const Rules: React.FC = () => { | |||
| 25 | }, []); | 25 | }, []); |
| 26 | 26 | ||
| 27 | return ( | 27 | return ( |
| 28 | <main className="ml-16 p-8 text-foreground font-[--font-barlow-semicondensed-regular] prose prose-invert max-w-none"> | 28 | <div className="pl-8 pt-2"> |
| 29 | <Helmet> | 29 | <Helmet> |
| 30 | <title>LPHUB | Rules</title> | 30 | <title>LPHUB | Rules</title> |
| 31 | </Helmet> | 31 | </Helmet> |
| 32 | <ReactMarkdown>{rulesText}</ReactMarkdown> | 32 | <ReactMarkdown>{rulesText}</ReactMarkdown> |
| 33 | </main> | 33 | </div> |
| 34 | ); | 34 | ); |
| 35 | }; | 35 | }; |
| 36 | 36 | ||