Skip to content

Commit

Permalink
lagt til Stavanger som et office
Browse files Browse the repository at this point in the history
  • Loading branch information
oddsve committed Sep 30, 2024
1 parent 9a29aba commit b8725ad
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
20 changes: 11 additions & 9 deletions src/components/blob-link/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,17 @@ export default function BlobLink({
}: BlobLinkProps) {
return (
<Link href={href} className={and(style.blobLink, className)}>
<BaseBlob
width={size}
height={size}
randomness={2}
extraPoints={6}
color={background}
/>
<span>{text}</span>
<Arrow className={style.blobLinkArrow} />
<div>
<BaseBlob
width={size}
height={size}
randomness={2}
extraPoints={6}
color={background}
/>
<span>{text}</span>
<Arrow className={style.blobLinkArrow} />
</div>
</Link>
);
}
2 changes: 1 addition & 1 deletion src/office-selector/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Link from 'next/link';
import style from './office.module.css';

export const offices = ['trondheim', 'oslo', 'bergen'] as const;
export const offices = ['trondheim', 'oslo', 'bergen', 'stavanger'] as const;
export type Office = (typeof offices)[number];

export function stringToDepartment(dep?: string): Office | undefined {
Expand Down

0 comments on commit b8725ad

Please sign in to comment.