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
File renamed without changes.
File renamed without changes.
Binary file removed public/logo192.png
Binary file not shown.
Binary file removed public/logo512.png
Binary file not shown.
14 changes: 2 additions & 12 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,11 @@
{
"short_name": "TanStack App",
"name": "Create TanStack App Sample",
"short_name": "pengwu",
"name": "pengwu",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
Expand Down
Binary file removed public/tanstack-circle-logo.png
Binary file not shown.
1 change: 0 additions & 1 deletion public/tanstack-word-logo-white.svg

This file was deleted.

6 changes: 6 additions & 0 deletions src/client/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,28 @@ export function Footer() {
href="https://github.com/Zefty"
target="_blank"
className="transition-colors duration-350 ease-out hover:text-muted"
aria-label="github"
>
<IconBrandGithubFilled className="size-12" />
<span className="sr-only hidden">Github</span>
</ALink>
<ALink
href="https://www.linkedin.com/in/jwu153/"
target="_blank"
className="transition-colors duration-350 ease-out hover:text-muted"
aria-label="linkedin"
>
<IconBrandLinkedinFilled className="size-12" />
<span className="sr-only hidden">Linkedin</span>
</ALink>
<ALink
href="mailto:jaime.wu011@gmail.com"
target="_blank"
className="transition-colors duration-350 ease-out hover:text-muted"
aria-label="email"
>
<IconMailFilled className="size-12" />
<span className="sr-only hidden">Email</span>
</ALink>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/client/components/Timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ function TimelineContent({
<Collapsible className="hover:bg-muted/50 data-open:bg-muted/50 rounded-lg p-4 w-full">
<CollapsibleTrigger className="group flex justify-between text-start w-full gap-4">
<div>
<h3 className="text-xl md:text-2xl lg:text-3xl font-semibold tracking-[-0.01em] text-start">
<span className="text-xl md:text-2xl lg:text-3xl font-semibold tracking-[-0.01em] text-start">
{title}
</h3>
</span>
<div className="flex items-center gap-2 mt-2 text-md font-semibold">
<IconCalendar className="h-4 w-4" />
<span>{date}</span>
Expand Down
10 changes: 8 additions & 2 deletions src/client/components/three/ThreeLoader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,14 @@ export function ThreeLoader({ minDuration = 1000 }: { minDuration?: number }) {
hidden ? "opacity-0" : "opacity-100",
)}
>
<Progress value={progress} className="w-1/4 bg-transparent">
<h1 className="text-center w-full font-bold text-xl">Loading...</h1>
<Progress
value={progress}
className="w-1/4 bg-transparent"
aria-label="loading"
>
<h1 id="loading-label" className="text-center w-full font-bold text-xl">
Loading...
</h1>
</Progress>
<OceanBackground className="-z-10" />
</div>
Expand Down
2 changes: 2 additions & 0 deletions src/core/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
export type Success<T> = { data: T; error: null };

export type Failure<E> = {
data: null;
error: E;
};

export type Result<T, E> = Success<T> | Failure<E>;
Loading