Skip to content

Commit f284e86

Browse files
committed
feat: update plugin request section in ModulesPage to include GitHub link
1 parent 824a7b5 commit f284e86

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

src/packages/ce/src/module/pages/ModulesPage.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import {icon, IconString} from "@core/util/icons";
2222
import {IconCheck} from "@tabler/icons-react";
2323
import CardSection from "@code0-tech/pictor/dist/components/card/CardSection";
2424
import {ProjectService} from "@ce-internal/project/services/Project.service";
25+
import Link from "next/link";
2526

2627
export const ModulesPage: React.FC = () => {
2728

@@ -146,16 +147,18 @@ export const ModulesPage: React.FC = () => {
146147
</Col>
147148
})
148149
}
149-
<Col xs={6} md={4} lg={3} xl={2} mb={1}>
150+
<Col xs={6} md={4} lg={3} xxl={2} mb={1}>
150151
<Card h={"100%"}
151152
style={{textAlign: "center", display: "flex", flexDirection: "column", alignItems: "center"}}>
152153
<Text size={"md"} hierarchy={"primary"}>Are you missing a plugin?</Text>
153154
<Spacing spacing={"xxs"}/>
154155
<Text>
155-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
156+
Create a issue on our github repository or join our discord to request a plugin
156157
</Text>
157158
<Spacing spacing={"sm"}/>
158-
<Button>Request a plugin</Button>
159+
<Link href={"https://github.com/code0-tech/codezero"}>
160+
<Button>Request a plugin</Button>
161+
</Link>
159162
</Card>
160163
</Col>
161164
</Row>

0 commit comments

Comments
 (0)