Skip to content

Commit

Permalink
match style of main index page
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyjux committed Feb 27, 2024
1 parent 5f3e6d0 commit 5767d6a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 22 deletions.
24 changes: 13 additions & 11 deletions src/nextapp/pages/devportal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,19 @@ const HomePage: React.FC = () => {
)
.map((action) => (
<Card key={action.url}>
<Heading size="md" mb={2}>
<NextLink passHref href={action.url}>
<Link color="bc-link" display="flex" alignItems="center">
<Icon as={action.icon} color="bc-yellow" mr={2} />
{action.title}
</Link>
</NextLink>
</Heading>
<p>
{action.description}
</p>
<Box p={4}>
<Heading size="md" mb={2}>
<NextLink passHref href={action.url}>
<Link color="bc-link" display="flex" alignItems="center">
<Icon as={action.icon} color="bc-yellow" mr={2} />
{action.title}
</Link>
</NextLink>
</Heading>
<p>
{action.description}
</p>
</Box>
</Card>
))}
</GridLayout>
Expand Down
24 changes: 13 additions & 11 deletions src/nextapp/pages/manager/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,19 @@ const HomePage: React.FC = () => {
)
.map((action) => (
<Card key={action.url}>
<Heading size="md" mb={2}>
<NextLink passHref href={action.url}>
<Link color="bc-link" display="flex" alignItems="center">
<Icon as={action.icon} color="bc-yellow" mr={2} />
{action.title}
</Link>
</NextLink>
</Heading>
<p>
{action.description}
</p>
<Box p={4}>
<Heading size="md" mb={2}>
<NextLink passHref href={action.url}>
<Link color="bc-link" display="flex" alignItems="center">
<Icon as={action.icon} color="bc-yellow" mr={2} />
{action.title}
</Link>
</NextLink>
</Heading>
<p>
{action.description}
</p>
</Box>
</Card>
))}
</GridLayout>
Expand Down

0 comments on commit 5767d6a

Please sign in to comment.