Skip to content
This repository has been archived by the owner on Jan 4, 2025. It is now read-only.

Commit

Permalink
Update dashboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdriscoll committed May 21, 2020
1 parent c6ec5bb commit 5e3b700
Showing 1 changed file with 22 additions and 16 deletions.
38 changes: 22 additions & 16 deletions src/v3/example/dashboard.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,8 @@ $Pages += New-UDPage @AdditionalParameters -Name "PowerShell Universal Dashboard
}
}

New-UDTypography -Text "Get Started" -Variant h2

New-UDGrid -Container -Content {
New-UDGrid -Item -SmallSize 6 -Content {
New-UDCard -Title "Installation" -Content {
Expand All @@ -212,24 +214,28 @@ $Pages += New-UDPage @AdditionalParameters -Name "PowerShell Universal Dashboard
}
}
}
}

New-UDTypography -Text "What's new" -Variant h2

New-UDTypography -Text "Now part of PowerShell Universal" -Variant h4

New-UDTypography -Text "Universal Dashboard is now part of the PowerShell Universal platform. PSU provides a centralized administrative interface, integration with Universal Automation and a robust architecture designed for a resiliant enterprise experience." -Paragraph

New-UDElement -Tag p -Content {
New-UDButton -Variant outlined -Text "Learn More" -OnClick { Invoke-UDRedirect -Url "https://www.ironmansoftware.com/powershell-universal" }
}

New-UDTypography -Text "Marketplace" -Variant h2

New-UDTypography -Text "Access a huge collection of community contributed controls and dashboards." -Paragraph
New-UDGrid -Item -SmallSize 6 -Content {
New-UDCard -Title "Marketplace" -Content {
New-UDElement -Tag p -Content {
New-UDTypography -Text "Access a huge collection of community contributed controls and dashboards." -Paragraph
}
New-UDElement -Tag p -Content {
New-UDButton -Variant outlined -Text "Learn More" -OnClick { Invoke-UDRedirect -Url "https://marketplace.universaldashboard.io" }
}
}
}

New-UDElement -Tag p -Content {
New-UDButton -Variant outlined -Text "Learn More" -OnClick { Invoke-UDRedirect -Url "https://marketplace.universaldashboard.io" }
New-UDGrid -Item -SmallSize 6 -Content {
New-UDCard -Title "PowerShell Universal" -Content {
New-UDElement -Tag p -Content {
New-UDTypography -Text "PowerShell Universal Dashboard is now part of the PowerShell Universal platform. " -Paragraph
}
New-UDElement -Tag p -Content {
New-UDButton -Variant outlined -Text "Learn More" -OnClick { Invoke-UDRedirect -Url "https://ironmansoftware.com/ud-ua-powershell-universal/" }
}
}
}
}
}
}
Expand Down

0 comments on commit 5e3b700

Please sign in to comment.