Skip to content

Commit f679b0f

Browse files
committed
refactor: add footer
1 parent bca005e commit f679b0f

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

apps/client/src/app.tsx

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { Github } from "lucide-react";
12
import bun from "./assets/bun.svg";
23
import effect from "./assets/effect.svg";
34
import react from "./assets/react.svg";
@@ -7,6 +8,7 @@ import { PresencePanel } from "./components/presence-panel";
78
import { RestCard } from "./components/rest-card";
89
import { RpcCard } from "./components/rpc-card";
910
import { ThemeToggle } from "./components/theme-toggle";
11+
import { Button } from "./components/ui/button";
1012

1113
function App() {
1214
return (
@@ -37,6 +39,35 @@ function App() {
3739
<RestCard />
3840
<RpcCard />
3941
</div>
42+
<footer className="w-full flex justify-between">
43+
<Button
44+
variant="link"
45+
render={(props) => (
46+
<a
47+
{...props}
48+
href="https://www.lloydrichards.dev"
49+
target="_blank"
50+
rel="noopener"
51+
>
52+
lloydrichards.dev
53+
</a>
54+
)}
55+
/>
56+
<Button
57+
variant="link"
58+
render={(props) => (
59+
<a
60+
{...props}
61+
href="https://github.com/lloydrichards/base_bevr-stack"
62+
target="_blank"
63+
rel="noopener noreferrer"
64+
>
65+
<Github />
66+
Github
67+
</a>
68+
)}
69+
/>
70+
</footer>
4071
</div>
4172
);
4273
}

0 commit comments

Comments
 (0)