Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/datopian/portaljs
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardo.farias committed Oct 10, 2023
2 parents e4624c3 + 975aaed commit 63ad514
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
9 changes: 3 additions & 6 deletions site/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,13 @@ export function Hero() {
</ButtonLink>

<ButtonLink
style="secondary"
style="primary"
className="mt-8 ml-3"
href="https://github.com/datopian/portaljs"
href="https://portaljs.com/"
>
View on GitHub
PortalJS Cloud
</ButtonLink>

<div className="md:max-w-md mx-auto lg:mx-0 ">
<NewsletterForm />
</div>
<p className="my-10 text-l tracking-wide">
<span>A project of</span>
<a
Expand Down
2 changes: 1 addition & 1 deletion site/components/NavItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function NavItem({ item }) {
onMouseLeave={closeDropdown}
target={item.target || '_self'}
onClick={() => setshowDropdown(!showDropdown)}
className="text-slate-600 dark:text-slate-400 inline-flex items-center mr-2 px-1 pt-1 text-sm font-medium hover:text-slate-500"
className={`${item.name.includes("Cloud") ? "text-blue-600 dark:text-blue-400" : "text-slate-600 dark:text-slate-400"} inline-flex items-center mr-2 px-1 pt-1 text-sm font-medium hover:text-slate-500`}
>
{item.name}
</Link>
Expand Down
6 changes: 6 additions & 0 deletions site/content/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ const config = {
href: 'https://storybook.portaljs.org',
target: '_blank',
},
{
name: 'Cloud ☁️',
href: 'https://portaljs.com/',
target: '_blank',
style: 'text-blue-600 dark:text-blue-400'
},
// { name: "DL Demo", href: "/data-literate/demo" },
// { name: "Excel Viewer", href: "/excel-viewer" },
],
Expand Down

1 comment on commit 63ad514

@vercel
Copy link

@vercel vercel bot commented on 63ad514 Oct 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.