diff --git a/src/constants/links.ts b/src/constants/links.ts index 59b1c3d..cc89bee 100644 --- a/src/constants/links.ts +++ b/src/constants/links.ts @@ -1,9 +1,9 @@ type Links = Record export const links: Links = { - workos: { - href: 'https://workos.com/', - label: 'WorkOS' + clerk: { + href: 'https://clerk.com//', + label: 'Clerk' }, twitter: { href: 'https://laurabeatris.com/twitter' diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 1f2bf68..31fc848 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,19 +1,19 @@ -import { InferGetStaticPropsType } from 'next' +import { ArrowRightIcon } from '@chakra-ui/icons' import { Stack, Text, VStack } from '@chakra-ui/react' +import { InferGetStaticPropsType } from 'next' import { SWRConfig } from 'swr' -import { ArrowRightIcon } from '@chakra-ui/icons' import { Heading } from 'components/Base/Heading' -import { Paragraph } from 'components/Base/Paragraph' import { HighlightLink } from 'components/Base/HighlightLink' +import { Paragraph } from 'components/Base/Paragraph' import { ProjectsList } from 'components/ProjectsList' import { links } from 'constants/links' -import { getDayOfWeek } from 'utils/getDayOfWeek' -import { gradients } from 'styles/theme/gradients' import { getHomePage } from 'graphql/queries/getHomePage' import { getTimeline } from 'graphql/queries/getTimeline' +import { gradients } from 'styles/theme/gradients' +import { getDayOfWeek } from 'utils/getDayOfWeek' -const { workos } = links +const { clerk } = links const now = new Date() const dayOfWeek = getDayOfWeek(now.getDate(), now.getMonth(), now.getFullYear()) @@ -60,7 +60,7 @@ function HomeContent ({ timeline, initialProjects }: HomeContentProps) { - Product Engineer at {workos.label} + Product Engineer at {clerk.label}