14 lines
427 B
TypeScript
14 lines
427 B
TypeScript
import UnderConstruction from "@/components/global/UnderConstruction";
|
||
|
||
export default function MiniaturesPage() {
|
||
return (
|
||
<div className="mx-auto w-full max-w-6xl px-4 py-10">
|
||
<UnderConstruction
|
||
title="Warhammer Miniatures"
|
||
subtitle="This page is getting ready for its big debut."
|
||
note="I’m curating attacks, revenges, and progress shots — check back soon."
|
||
/>
|
||
</div>
|
||
);
|
||
}
|