Skip to content

Commit 141763e

Browse files
committed
Unify site title and update CTA link
Shorten navbar/footer branding to "MSK Scripts", make the hero title read from themeConfig.navbar.title for consistency, and replace the Discord CTA with a Tebex Shop link (https://www.msk-scripts.de) and label. These changes align site branding and update the primary external call-to-action.
1 parent b9b98ea commit 141763e

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const config: Config = {
7272
respectPrefersColorScheme: false,
7373
},
7474
navbar: {
75-
title: 'MSK Scripts Documentation',
75+
title: 'MSK Scripts',
7676
logo: {
7777
alt: 'MSK Scripts Logo',
7878
src: 'img/logo.png',

src/pages/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function Hero() {
2020
className={styles.heroLogo}
2121
/>
2222
<Heading as="h1" className={styles.heroTitle}>
23-
{siteConfig.title}
23+
{siteConfig.themeConfig.navbar.title}
2424
</Heading>
2525
<p className={styles.heroSubtitle}>{siteConfig.tagline}</p>
2626
<div className={styles.heroButtons}>
@@ -29,9 +29,9 @@ function Hero() {
2929
</Link>
3030
<Link
3131
className="button button--secondary button--lg"
32-
href="https://discord.gg/5hHSBRHvJE"
32+
href="https://www.msk-scripts.de"
3333
>
34-
Discord
34+
Tebex Shop
3535
</Link>
3636
</div>
3737
</div>

src/theme/Footer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function Footer(): ReactNode {
4444
alt="MSK Scripts Logo"
4545
className={styles.brandLogo}
4646
/>
47-
<span className={styles.brandName}>MSK Scripts Documentation</span>
47+
<span className={styles.brandName}>MSK Scripts</span>
4848
</Link>
4949
<p className={styles.brandTagline}>
5050
Documentation for MSK Scripts resources.

0 commit comments

Comments
 (0)