Skip to content

Commit

Permalink
Kill codeamigo
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Jan 16, 2024
1 parent ac5c61f commit bed9de0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"git.ignoreLimitWarning": true,
"typescript.preferences.importModuleSpecifier": "non-relative"
Expand Down
26 changes: 23 additions & 3 deletions client/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,15 @@ const Home = (props: Props) => {
return (
<div className="flex w-full flex-col items-center justify-between sm:shrink-0 lg:flex-row">
<div className="mt-10 w-full max-w-3xl lg:mt-0">
<span className=" inline-flex h-6 cursor-default select-none items-center whitespace-nowrap rounded bg-[#000044] px-2 text-xs font-semibold text-blue-600">
Preview Available
<span
className="inline-flex h-6 cursor-pointer select-none items-center rounded bg-pink-200 px-2 text-xs font-semibold text-pink-600"
onClick={() => {
window.open('https://porkybank.io');
}}
>
New Project 🐷 Porkybank:&nbsp;
<span className="font-light">Track your daily budget</span>
<Icon className="ml-1.5" name="right" />
</span>
<h1 className=" mt-2 bg-gradient-to-br from-white to-neutral-600 bg-clip-text text-[35px] font-bold leading-[42px] tracking-[-0.64px] text-transparent sm:text-6xl sm:leading-[68px] sm:tracking-[-0.896px]">
<span className="inline-block max-w-[525px] align-top">
Expand All @@ -41,12 +48,25 @@ const Home = (props: Props) => {
</span>
</h1>
<p className=" mb-8 mt-4 text-base font-normal text-neutral-500">
<span className="inline-block max-w-[591px] align-top">
<span className="inline-block max-w-[591px] align-top line-through">
Codeamigo is an AI powered coding assistant that helps you learn to
code like a developer. Today's developers didn't learn binary before
learning Python, why should you learn how to code without the most
modern tools?
</span>
<span className="inline-block max-w-[591px] align-top">
I will no longer be maintaining Codeamigo. I am working on a new
project called Porkybank. It's a tool to help you track your daily
budget. If you're interested in learning more, please check it out
at{' '}
<a
className="underline"
href="https://porkybank.io"
target="_blank"
>
porkybank.io
</a>
</span>
</p>
<button
className=" group hidden select-none items-center gap-2 text-sm font-semibold text-neutral-500 outline-none transition duration-200 ease-in-out hover:text-neutral-500 focus:text-neutral-500 sm:inline-flex"
Expand Down

0 comments on commit bed9de0

Please sign in to comment.