feat: add treasures title metadata, add disclaimer

This commit is contained in:
Khairul Hidayat 2024-01-10 17:06:06 +00:00
parent 05904267c5
commit 7e697af640
3 changed files with 18 additions and 1 deletions

View File

@ -5,3 +5,7 @@
.container { .container {
@apply mx-auto max-w-5xl px-4; @apply mx-auto max-w-5xl px-4;
} }
.link {
@apply text-blue-600 font-medium hover:text-blue-500 hover:underline;
}

View File

@ -7,6 +7,7 @@ import openingSfx from "@/assets/audio/VO_JA_Furina_Opening_Treasure_Chest_02.og
import ViewSheet from "./viewSheet"; import ViewSheet from "./viewSheet";
import useModal from "@/hooks/useModal"; import useModal from "@/hooks/useModal";
import LazyImage from "@/components/ui/LazyImage"; import LazyImage from "@/components/ui/LazyImage";
import PageMetadata from "@/components/containers/PageMetadata";
const openingChestSfx = new Howl({ const openingChestSfx = new Howl({
src: openingSfx, src: openingSfx,
@ -23,6 +24,8 @@ const ArtworksPage = () => {
return ( return (
<div className="container py-16"> <div className="container py-16">
<PageMetadata title="Treasures" />
<h1 className="text-2xl">Treasures</h1> <h1 className="text-2xl">Treasures</h1>
<div> <div>
<p className="italic inline">Take it. Ahem... I allow you!</p> <p className="italic inline">Take it. Ahem... I allow you!</p>

View File

@ -62,10 +62,20 @@ const ViewSheet = ({ modal }: Props) => {
<a <a
href={data.srcUrl} href={data.srcUrl}
target="_blank" target="_blank"
className="block mt-1 text-primary-500 font-medium hover:underline truncate" className="block mt-1 link truncate"
> >
{cleanUrl(data.srcUrl)} {cleanUrl(data.srcUrl)}
</a> </a>
<p className="text-sm mt-8">
<i>Disclaimer:</i>
<br />I do not own this work of art. Please visit the original
post to see more from{" "}
<a href={data.srcUrl} target="_blank" className="link">
{data.artistName}
</a>
.
</p>
</div> </div>
</div> </div>
)} )}