Skip to content

Commit 573e745

Browse files
committedAug 11, 2024
small fixes && improvements
1 parent 970ea29 commit 573e745

25 files changed

+32
-16
lines changed
 

‎docusaurus.config.ts

+24-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { Config } from '@docusaurus/types';
33
import type * as Preset from '@docusaurus/preset-classic';
44

55
const config: Config = {
6-
title: 'SDKMAN!',
6+
title: 'SDKMAN! the Software Development Kit Manager',
77
tagline: '',
88
favicon: 'img/favicon.ico',
99

@@ -45,19 +45,40 @@ const config: Config = {
4545
theme: {
4646
customCss: './src/scss/custom.scss',
4747
},
48+
// IMPORTANT: uncomment for sdkman.github.io in production
49+
// googleAnalytics: {
50+
// trackingID: 'UA-10247295-12',
51+
// anonymizeIP: true,
52+
// },
53+
// IMPORTANT: Need use Google Analytics 4 with G-* instead UA-*
54+
// gtag: {
55+
// trackingID: 'G-##########',
56+
// anonymizeIP: true
57+
// },
4858
} satisfies Preset.Options,
4959
],
5060
],
5161

5262
plugins: ['docusaurus-plugin-sass', './src/plugins/google-fonts.ts'],
5363

5464
themeConfig: {
65+
metadata: [
66+
{ name: 'og:type', content: 'website' },
67+
{ name: 'og:site_name', content: 'SDKMAN!' },
68+
{
69+
name: 'og:description',
70+
content:
71+
'SDKMAN! is a tool for managing parallel versions of multiple Software Development Kits on most Unix based systems.',
72+
},
73+
{ name: 'twitter:site', content: '@sdkman_' },
74+
{ name: 'twitter:creator', content: '@sdkman_' },
75+
],
5576
// Replace with your project's social card
56-
image: 'img/docusaurus-social-card.jpg',
77+
image: 'assets/img/bubble-logo-sdkman-groovy-color.png',
5778
navbar: {
5879
logo: {
5980
alt: 'SDKMAN!',
60-
src: 'img/logo.png',
81+
src: 'assets/img/logo.png',
6182
},
6283
items: [
6384
{

‎src/components/sections/Hero/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default function Hero() {
88
<div className={styles.sectionTop}>
99
<img
1010
className={styles.sectionTopImg}
11-
src="/img/sdk-man-small-pattern.svg"
11+
src="/assets/img/sdk-man-small-pattern.svg"
1212
alt="SDKMAN! logo"
1313
/>
1414

‎src/components/sections/Hero/styles.module.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717

1818
&Text {
19-
font-size: 1.25rem;
19+
font-size: 1.125rem;
2020
font-weight: 500;
2121
width: 100%;
2222
max-width: 768px;
@@ -36,12 +36,13 @@
3636
margin: 1rem 0;
3737

3838
&Title {
39-
font-size: 24px;
39+
font-size: 1.5rem;
4040
font-weight: 700;
4141
text-transform: capitalize;
4242
}
4343

4444
&Text {
45+
font-weight: 500;
4546
text-align: center;
4647
color: var(--color-secondary);
4748

‎src/components/sections/OpenCollective/Buttons/OCButton/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function OCButton() {
99
href="https://opencollective.com/sdkman/contribute"
1010
>
1111
<img
12-
src="/img/open-collective-button.png"
12+
src="/assets/img/open-collective-button.png"
1313
alt="Donate"
1414
width={240}
1515
height={35}

‎src/pages/contributors.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { OpenCollectiveList } from '@site/src/components/sections/OpenCollective
44

55
export default function ContributorsPage() {
66
return (
7-
<Layout>
7+
<Layout title="Contributors">
88
<OpenCollectiveList />
99
</Layout>
1010
);

‎src/pages/index.tsx

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
1-
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
21
import Layout from '@theme/Layout';
32

43
import Hero from '@site/src/components/sections/Hero';
54
import Features from '@site/src/components/sections/Features';
65
import { OpenCollectiveCarousel } from '@site/src/components/sections/OpenCollective';
76

87
export default function WelcomePage() {
9-
const { siteConfig } = useDocusaurusContext();
10-
118
return (
12-
<Layout
13-
title={`Hello from ${siteConfig.title}`}
14-
description="Description will go into a meta tag in <head />"
15-
>
9+
<Layout title="Home">
1610
<Hero />
1711

1812
<main>

‎src/theme/Footer/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Link from '@docusaurus/Link';
22
import clsx from 'clsx';
33

4-
import CommonHausFoundationLogo from '@site/static/img/CF_logo_horizontal_stack_reverse.svg';
4+
import CommonHausFoundationLogo from '@site/static/assets/img/CF_logo_horizontal_stack_reverse.svg';
55

66
import styles from './styles.module.scss';
77

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)