Skip to content

Commit

Permalink
Rm version in footer (Rewards)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuli-ferna committed Sep 16, 2024
1 parent a3c7177 commit aed948c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion apps/rewards-dashboard/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
import { WormholeLogo } from "../quarks/LogoVectors";
import { NavItem } from "../quarks/NavItem";

export const Footer = () => {
return (
<footer className="flex flex-row mt-16 gap-8 justify-between items-center">
<div className="text-white text-sm text-opacity-90">
v{import.meta.env.VITE_APP_VERSION || "0.0.0"}

{[
{
label: "Privacy Policy",
href: `${BASE_URL}/#/privacy-policy/`,
},
].map(({ label, href }) => (
<NavItem item={{label, href}} />
))}
</div>

<div className="flex flex-row items-center justify-center flex-1">
Expand Down

0 comments on commit aed948c

Please sign in to comment.