Skip to content

Commit b18db0c

Browse files
committed
Revert "some more revisions"
This reverts commit 5b56c26.
1 parent 5b56c26 commit b18db0c

File tree

13 files changed

+176
-346
lines changed

13 files changed

+176
-346
lines changed

docusaurus.config.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,16 @@ const config = {
114114
{
115115
title: "Shortcuts",
116116
items: [
117+
{
118+
label: "Introduction",
119+
to: "/docs/intro",
120+
},
117121
{
118122
label: "Blog",
119123
to: "/blog",
120124
},
121125
{
122-
label: "Set Up a Server",
126+
label: "Server Setup",
123127
to: "/docs/server-docs/setup",
124128
},
125129
{
@@ -205,7 +209,7 @@ const config = {
205209
],
206210
},
207211
],
208-
copyright: `Copyright © ${new Date().getFullYear()} <a href="https://phalco.de">Phalcode</a> - All Rights Reserved.`,
212+
copyright: `Copyright © ${new Date().getFullYear()} <a href="https://phalco.de">Phalcode</a> - All Rights Reserved`,
209213
},
210214
prism: {
211215
theme: lightTheme,

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,13 @@
1919
"@docusaurus/plugin-client-redirects": "^3.5.2",
2020
"@docusaurus/preset-classic": "3.5.2",
2121
"@docusaurus/theme-common": "^3.5.2",
22-
"@headlessui/react": "^2.2.0",
2322
"@mdx-js/react": "^3.1.0",
2423
"clsx": "^2.1.1",
2524
"docusaurus-plugin-image-zoom": "^2.0.0",
2625
"prism-react-renderer": "^2.4.0",
2726
"react": "^18.3.1",
2827
"react-dom": "^18.3.1",
29-
"swetrix": "^3.5.0"
28+
"swetrix": "^3.4.1"
3029
},
3130
"devDependencies": {
3231
"@docusaurus/module-type-aliases": "3.5.2",

pnpm-lock.yaml

Lines changed: 5 additions & 170 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/Button.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export function Button({ className, ...props }) {
3333
const variantClass = getVariantClass(props.variant, props.color);
3434

3535
className = clsx(baseStyles[props.variant], variantClass, className);
36+
console.log(className);
3637

3738
return typeof props.href === "undefined" ? (
3839
<button className={className} {...props} />

src/components/DropdownButton.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const Dropdown = ({ className, options, ...props }) => {
2727

2828
{isOpen && (
2929
<div
30-
className="absolute right-0 z-10 mt-2 w-full origin-top-right rounded-md bg-background-alt shadow-lg ring-1 ring-text-light"
30+
className="absolute right-0 z-10 mt-2 w-full origin-top-right rounded-md bg-background-dark shadow-lg ring-1 ring-text-light"
3131
role="menu"
3232
aria-orientation="vertical"
3333
>

src/components/Faqs.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ export function Faqs() {
7474
</h2>
7575
<p className="mt-4 text-lg tracking-tight text-text-light">
7676
If you can’t find what you’re looking for here, check out the{" "}
77-
<Link href="https://gamevau.lt/docs/intro">Docs</Link> or contact us
78-
via <Link href="https://discord.gg/NEdNen2dSu">Discord</Link>,{" "}
77+
<Link href="https://gamevau.lt/docs/intro">Docs</Link> or contact us via{" "}
78+
<Link href="https://discord.gg/NEdNen2dSu">Discord</Link>,{" "}
7979
<Link href="https://github.com/Phalcode/gamevault-app/discussions">
8080
GitHub
8181
</Link>

0 commit comments

Comments
 (0)