diff --git a/src/components/ToolSection.astro b/src/components/ToolSection.astro index f309301..c287a2a 100644 --- a/src/components/ToolSection.astro +++ b/src/components/ToolSection.astro @@ -9,7 +9,7 @@ interface Props { name: string description: string href?: string - iconPath: string + iconPath?: string iconBgColour: string }[] } @@ -35,7 +35,7 @@ const { class: className, title, tools, ...props } = Astro.props >
{tool.description}
diff --git a/src/components/layout/Header.astro b/src/components/layout/Header.astro index dd866fe..cc13d24 100644 --- a/src/components/layout/Header.astro +++ b/src/components/layout/Header.astro @@ -35,7 +35,7 @@ import { Image } from 'astro:assets' ${Astro.url.pathname.startsWith('/categories') ? 'text-green-400' : ''} `} aria-label='Nav Menu Item' - >Cats + >Cats. + diff --git a/src/icons/round-photo.svg b/src/icons/round-photo.svg new file mode 100644 index 0000000..54d1c16 --- /dev/null +++ b/src/icons/round-photo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/tool.svg b/src/icons/tool.svg new file mode 100644 index 0000000..ad49c07 --- /dev/null +++ b/src/icons/tool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index b2adbd9..8ee863e 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -48,6 +48,12 @@ const allPostsByDate = sortMDByDate(allPosts).slice(0, MAX_POSTS) + + diff --git a/src/pages/tools/index.astro b/src/pages/tools/index.astro index 460b58b..1a36784 100644 --- a/src/pages/tools/index.astro +++ b/src/pages/tools/index.astro @@ -46,6 +46,13 @@ const PRODUCTIVITY = [ ] const DEVELOPMENT = [ + { + name: 'Cursor', + description: 'IDE', + href: 'https://www.cursor.com/', + iconPath: 'cursor', + iconBgColour: '#2C2C32' + }, { name: 'VS Code', description: 'IDE', @@ -59,6 +66,12 @@ const DEVELOPMENT = [ href: 'https://chat.openai.com/', iconPath: 'chatgpt', iconBgColour: '#06A67F' + }, + { + name: 'Claude', + description: 'AI', + href: 'https://claude.ai/', + iconBgColour: '#06A67F' } ]