Skip to content

Commit

Permalink
style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ickynavigator committed Feb 25, 2024
1 parent 4c24a45 commit 8690436
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions src/app/(root)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,14 @@ const Page = async () => {

return (
<Stack align="center" gap="xs">
<Center style={{ overflow: 'hidden', borderRadius: '50%' }}>
<Center>
<Image
src={urlForImage(image)}
src={urlForImage(data.image)}
alt={name}
component={NextImage}
priority
radius="50%"
w={picSize.width}
{...picSize}
/>
</Center>
Expand All @@ -86,22 +88,17 @@ const Page = async () => {
{title}
</Title>
{jobVisibility && (
<>
<Title order={3} ta="center" c="dimmed">
Job Status
</Title>
<Alert color={jobStatusCheck.color} radius="xl" fz="sm">
<Center>
<Group>
<Text size="sm">{jobStatusCheck.message}</Text>
{jobStatusCheck.icon}
</Group>
</Center>
</Alert>
</>
<Alert color={jobStatusCheck.color} radius="xl" fz="sm" p="xs">
<Center>
<Group>
<Text size="sm">{jobStatusCheck.message}</Text>
{jobStatusCheck.icon}
</Group>
</Center>
</Alert>
)}
<Center>
<Box>
<Center w="100%">
<Box w="100%">
<Title order={2} mb="sm" ta="right">
Bio
</Title>
Expand Down

0 comments on commit 8690436

Please sign in to comment.