mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-26 03:12:50 +00:00
19 lines
342 B
TypeScript
19 lines
342 B
TypeScript
|
|
"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>
|
||
|
|
);
|
||
|
|
}
|