list-of-lp/src/Components/BackButton.tsx

19 lines
342 B
TypeScript
Raw Normal View History

2025-10-24 22:20:37 +00:00
"use client";
import { Button } from "@mantine/core";
import { Link } from "next-view-transitions";
export default function BackButton() {
return (
<Button
component={Link}
href="/"
variant="subtle"
color="gray"
className="mb-8 text-gray-300 hover:bg-gray-800 hover:text-white"
>
Back to Albums
</Button>
);
}