Skip to content

Commit

Permalink
oops again
Browse files Browse the repository at this point in the history
  • Loading branch information
AtotheY committed Oct 8, 2024
1 parent 12c7c0d commit 9923397
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { LinkTree } from "@/components/link-tree"
import { LinkTree } from "@/components/link-tree";

export default function Page() {
return <LinkTree />
}
return <LinkTree />;
}
4 changes: 2 additions & 2 deletions components/link-tree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const items: LinkItem[] = [
},
];

export default function Component() {
export function LinkTree() {
return (
<div className="min-h-screen bg-red-50 py-8 px-4 relative overflow-hidden">
{/* Progressive wave background */}
Expand Down Expand Up @@ -127,7 +127,7 @@ export default function Component() {
<Image
src={
process.env.NODE_ENV === "production"
? `/AtotheY.github.io${profileImage}`
? `/AtotheY.github.io/${profileImage}`
: profileImage
}
alt={name}
Expand Down

0 comments on commit 9923397

Please sign in to comment.