Skip to content

Commit c477fc6

Browse files
committed
Various Changes
1 parent 0d3b50e commit c477fc6

File tree

10 files changed

+16
-11
lines changed

10 files changed

+16
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# HelpChat ToolBox
1+
# HelpChat Toolbox
22

33
## What is it?
44

5-
HelpChat ToolBox is a toolbox of useful tools for HelpChat's Minecraft plugins, configs, and more!
5+
HelpChat Toolbox is a toolbox of useful tools for HelpChat's Minecraft plugins, configs, and more!
66

77
It currently includes the following features:
88

@@ -17,7 +17,7 @@ It currently includes the following features:
1717

1818
### Usage
1919

20-
HelpChat's ToolBox is hosted at [toolbox.helpch.at](https://toolbox.helpch.at/).
20+
HelpChat's Toolbox is hosted at [toolbox.helpch.at](https://toolbox.helpch.at/).
2121

2222
## Development
2323

cli/generateschema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const directory = fs
1010
directory.forEach((f: string) => {
1111
const file = fs.readFileSync(`./converters/types/${f}`, "utf8");
1212

13-
const regex = /\/\/ @ToolBox - ([a-zA-Z]{1,30})/;
13+
const regex = /\/\/ @Toolbox - ([a-zA-Z]{1,30})/;
1414
const match = file.match(regex);
1515

1616
if (!match || match.length < 2) return;

converters/types/deluxechat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @ToolBox - DeluxeChat
1+
// @Toolbox - DeluxeChat
22

33
export interface DeluxeChat {
44
deluxechat: DeluxeChatConfig;

converters/types/essentialschat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @ToolBox - EssentialsChatTypes
1+
// @Toolbox - EssentialsChatTypes
22

33
export interface EssentialsChatConfig {
44
chat: {

converters/types/venturechat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @ToolBox - VentureChat
1+
// @Toolbox - VentureChat
22

33
export interface VentureChat {
44
venturechat: VentureChatConfig;

pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function Toolbox({ Component, pageProps }: AppProps) {
105105
${tw`text-xs`}
106106
`}
107107
>
108-
ToolBox
108+
Toolbox
109109
</p>
110110
</div>
111111
<div

pages/_document.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,13 @@ export default class MyDocument extends Document {
1212
return (
1313
<Html>
1414
<Head>
15-
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet"/>
15+
<link
16+
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
17+
rel="stylesheet"
18+
/>
1619
<link rel="icon" href="/favicon.ico" />
20+
<meta name="theme-color" content="#69137e" />
21+
<meta property="og:image" content="logo.png" />
1722
</Head>
1823
<body>
1924
<Main />

pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function Home() {
99
return (
1010
<div>
1111
<Head>
12-
<title>HelpChat ToolBox</title>
12+
<title>HelpChat Toolbox</title>
1313
<meta
1414
name="description"
1515
content="A collection of tools and solutions you might find useful for you and your server."
@@ -25,7 +25,7 @@ function Home() {
2525
>
2626
<p css={tw`text-lg text-brightblue`}>Introducing the all new</p>
2727
<div css={tw`text-white text-center space-y-12`}>
28-
<p css={tw`text-5xl font-bold overflow-hidden`}>HelpChat ToolBox</p>
28+
<p css={tw`text-5xl font-bold overflow-hidden`}>HelpChat Toolbox</p>
2929
<p css={tw`text-base text-lightgray`}>
3030
A collection of tools and solutions you might find useful for you
3131
and your server.

public/HelpChat.png

-70.5 KB
Binary file not shown.
File renamed without changes.

0 commit comments

Comments
 (0)