Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions schemas/GoodWebsitesSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
"name": "Error",
"color": "red",
"description": null
},
{
"id": "a04ff414-aac0-4c0e-a399-d23305af9575",
"name": "Pending",
"color": "brown",
"description": null
}
]
}
Expand Down
6 changes: 6 additions & 0 deletions schemas/StackSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,12 @@
"name": "Error",
"color": "red",
"description": null
},
{
"id": "b0f09923-9d88-4f94-8030-d28cdc62dda1",
"name": "Pending",
"color": "pink",
"description": null
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions schemas/notionSchemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const StackSchema = z.object({
"Preview Error": z.string().optional(),
"Process icon": z.any().optional(),
Status: z.enum(["Inactive", "Active"]).optional(),
"Preview Status": z.enum(["Queued", "Processing", "Done", "Error"]).optional(),
"Preview Status": z.enum(["Queued", "Processing", "Done", "Error", "Pending"]).optional(),
Name: z.string().optional(),
});

Expand Down Expand Up @@ -99,7 +99,7 @@ export const MusicSchema = z.object({
export type Music = z.infer<typeof MusicSchema>;

export const GoodWebsitesSchema = z.object({
"Preview Status": z.enum(["Queued", "Processing", "Done", "Error"]).optional(),
"Preview Status": z.enum(["Queued", "Processing", "Done", "Error", "Pending"]).optional(),
"Created time": z.string().optional(),
"Preview Error": z.string().optional(),
"Capture Screenshot": z.any().optional(),
Expand Down
8 changes: 7 additions & 1 deletion src/components/home/ProjectsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,13 @@ const projects = [
{
name: "HN CLI",
href: "https://github.com/brianlovin/hn-cli",
description: "A command-line interface for Hacker News",
description: "Hacker News in your terminal",
external: true,
},
{
name: "Tax UI",
href: "https://tax-ui.brianlovin.com/",
description: "Chat with your tax returns",
external: true,
},
];
Expand Down
10 changes: 10 additions & 0 deletions src/config/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import React from "react";
import { AppDissection } from "@/components/icons/AppDissection";
import { Ballot } from "@/components/icons/Ballot";
import { BrowserTabs } from "@/components/icons/BrowserTabs";
import { Calculator } from "@/components/icons/Calculator";
import { DoubleChatBubble } from "@/components/icons/DoubleChatBubble";
import { FileText2 } from "@/components/icons/FileText2";
import { Headphones3 } from "@/components/icons/Headphones3";
Expand Down Expand Up @@ -124,6 +125,15 @@ export const navigationItems: NavigationItem[] = [
isActive: () => false,
section: "projects",
},
{
id: "tax-ui",
label: "Tax UI",
href: "https://tax-ui.brianlovin.com/",
icon: Calculator,
keywords: ["tax", "taxes", "returns", "chat", "visualize"],
isActive: () => false,
section: "projects",
},
];

// Helper functions to filter navigation items
Expand Down