Skip to content

Commit

Permalink
added roadmap and download links
Browse files Browse the repository at this point in the history
  • Loading branch information
Roma36 committed Oct 6, 2023
1 parent 4e0e56e commit a10c87b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,11 @@ const config = {
label: "Blog",
position: "left",
},
{
label: "Roadmap",
href: "https://github.com/opentofu/opentofu/milestones",
position: "left",
},
{
type: "dropdown",
to: "/docs",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ export default function Hero() {
</Button>
<Button
variant="primary"
href="https://github.com/opentofu/opentofu/blob/main/CONTRIBUTING.md"
href="https://github.com/opentofu/opentofu/releases/latest"
>
Contribute
Try it out
</Button>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion src/theme/Navbar/Content/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function NavbarContent() {
<div className="flex items-center gap-4 sm:gap-6">
<NavbarMobileSidebarToggle />
<NavbarLogo />
<div className="hidden md:flex items-center gap-6">
<div className="hidden lg:flex items-center gap-6">
<NavbarItems items={leftItems} />
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/theme/NavbarItem/DefaultNavbarItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function DefaultNavbarItemDesktop({
const element = (
<NavbarNavLink
className={clsx(
"font-bold text-gray-900 dark:text-gray-50 hover:text-brand-700 dark:hover:text-brand-500",
"flex items-center font-bold text-gray-900 dark:text-gray-50 hover:text-brand-700 dark:hover:text-brand-500",
className,
)}
isDropdownLink={isDropdownItem}
Expand All @@ -32,7 +32,7 @@ function DefaultNavbarItemMobile({
return (
<NavbarNavLink
className={clsx(
"font-bold text-gray-900 dark:text-gray-50 hover:text-gray-900 dark:hover:text-brand-500",
"flex items-center font-bold text-gray-900 dark:text-gray-50 hover:text-gray-900 dark:hover:text-brand-500",
className,
)}
{...props}
Expand Down

0 comments on commit a10c87b

Please sign in to comment.