File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
pdl-live-react/src/page/welcome Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { Content } from "@patternfly/react-core"
22
33export default function Intro ( ) {
44 return (
5- < Content component = "p" isEditorial >
5+ < Content component = "p" isEditorial className = "pdl-welcome-intro" >
66 PDL is a declarative language designed for developers to create reliable,
77 composable LLM prompts and integrate them into software systems. It
88 provides a structured way to specify prompt templates, enforce validation,
Original file line number Diff line number Diff line change @@ -9,9 +9,11 @@ type Props = {
99 tiles ?: ReactNode | ReactNode [ ]
1010}
1111
12+ const minWidths = { default : "300px" }
13+
1214export default function Tiles ( props : Props ) {
1315 return (
14- < Gallery hasGutter >
16+ < Gallery hasGutter minWidths = { minWidths } >
1517 { props . tiles ?? (
1618 < >
1719 < Upload />
Original file line number Diff line number Diff line change 1- .pdl-welcome-content {
1+ .pdl-welcome-intro {
22 max-width : 1200px ;
33}
You can’t perform that action at this time.
0 commit comments