Skip to content

Commit

Permalink
Make footer small and muted
Browse files Browse the repository at this point in the history
  • Loading branch information
qwtel committed Aug 31, 2024
1 parent 8106443 commit f3c03b2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,17 @@ export default function App() {
<Outlet />
</main>

<footer className="py-4 flex justify-end text-s">
<div>
Version{" "}
<footer className="pt-4 pb-8 flex justify-between text-s">
<small className="text-muted-foreground">Counterscale: Web Analytics</small>
<small>
<span className="text-muted-foreground">Version</span>
{" "}
<a
href={`https://github.com/qwtel/counterscale/commit/${data.version}`}
>
{data.version?.slice(0, 7)}
</a>
</div>
</small>
</footer>
</div>
);
Expand Down

0 comments on commit f3c03b2

Please sign in to comment.