Skip to content

Commit

Permalink
some more revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfagun74 committed Oct 27, 2024
1 parent 6c27a16 commit 5b56c26
Show file tree
Hide file tree
Showing 13 changed files with 346 additions and 176 deletions.
8 changes: 2 additions & 6 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,16 +114,12 @@ const config = {
{
title: "Shortcuts",
items: [
{
label: "Introduction",
to: "/docs/intro",
},
{
label: "Blog",
to: "/blog",
},
{
label: "Server Setup",
label: "Set Up a Server",
to: "/docs/server-docs/setup",
},
{
Expand Down Expand Up @@ -209,7 +205,7 @@ const config = {
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} <a href="https://phalco.de">Phalcode</a> - All Rights Reserved`,
copyright: `Copyright © ${new Date().getFullYear()} <a href="https://phalco.de">Phalcode</a> - All Rights Reserved.`,
},
prism: {
theme: lightTheme,
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@
"@docusaurus/plugin-client-redirects": "^3.5.2",
"@docusaurus/preset-classic": "3.5.2",
"@docusaurus/theme-common": "^3.5.2",
"@headlessui/react": "^2.2.0",
"@mdx-js/react": "^3.1.0",
"clsx": "^2.1.1",
"docusaurus-plugin-image-zoom": "^2.0.0",
"prism-react-renderer": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swetrix": "^3.4.1"
"swetrix": "^3.5.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.5.2",
Expand Down
175 changes: 170 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/components/Button.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export function Button({ className, ...props }) {
const variantClass = getVariantClass(props.variant, props.color);

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

return typeof props.href === "undefined" ? (
<button className={className} {...props} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/DropdownButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Dropdown = ({ className, options, ...props }) => {

{isOpen && (
<div
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"
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"
role="menu"
aria-orientation="vertical"
>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Faqs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ export function Faqs() {
</h2>
<p className="mt-4 text-lg tracking-tight text-text-light">
If you can’t find what you’re looking for here, check out the{" "}
<Link href="https://gamevau.lt/docs/intro">Docs</Link> or contact us via{" "}
<Link href="https://discord.gg/NEdNen2dSu">Discord</Link>,{" "}
<Link href="https://gamevau.lt/docs/intro">Docs</Link> or contact us
via <Link href="https://discord.gg/NEdNen2dSu">Discord</Link>,{" "}
<Link href="https://github.com/Phalcode/gamevault-app/discussions">
GitHub
</Link>
Expand Down
Loading

0 comments on commit 5b56c26

Please sign in to comment.