Skip to content

Commit

Permalink
robots
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Nov 30, 2023
1 parent 9cfff94 commit 30b9f9a
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
27 changes: 27 additions & 0 deletions apps/dashboard/src/components/tables/vault/empty-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,33 @@ export function EmptyTable({ type }: Props) {
</div>
);

case "exports":
return (
<div className="h-[calc(100%-80px)] p-4 flex justify-center items-center">
<div className="items-center flex flex-col text-center">
<h2 className="mb-2">Exports</h2>
<p className="text-sm text-[#878787]">
This is where your exports based from <br />
transactions will end up.
</p>
</div>
</div>
);

case "transactions":
return (
<div className="h-[calc(100%-80px)] p-4 flex justify-center items-center">
<div className="items-center flex flex-col text-center">
<h2 className="mb-2">Transactions</h2>
<p className="text-sm text-[#878787]">
This is where your attachments for
<br />
transactions will end up.
</p>
</div>
</div>
);

default:
return (
<div className="h-[calc(100%-80px)] p-4 flex justify-center items-center">
Expand Down
10 changes: 10 additions & 0 deletions apps/website/src/app/robots.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { MetadataRoute } from "next";

export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
},
};
}

0 comments on commit 30b9f9a

Please sign in to comment.