Files
v2.app.gaertan.art/src/app/(normal)/miniatures/page.tsx

14 lines
427 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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="Im curating attacks, revenges, and progress shots — check back soon."
/>
</div>
);
}