Files
aystone-manager/app/couleurs/page.tsx
T

27 lines
777 B
TypeScript
Raw Normal View History

2025-07-29 06:16:52 +02:00
import { Palette } from "lucide-react";
2025-07-29 05:15:33 +02:00
import Image from "next/image";
export const metadata = {
title: "Charte des couleurs Minecraft",
};
2025-07-29 06:16:52 +02:00
2025-07-29 05:15:33 +02:00
export default function CouleursPage() {
return (
<div className="min-h-screen bg-[#0e0e10] text-white px-4 py-12 flex flex-col items-center">
2025-07-29 06:16:52 +02:00
<h1 className="text-4xl font-bold mb-6 text-center flex items-center justify-center gap-2">
<Palette className="w-8 h-8 text-white" />
Charte des couleurs Minecraft
2025-07-29 05:15:33 +02:00
</h1>
<div className="w-full max-w-4xl">
<Image
src="/charte-couleurs.png"
alt="Charte des couleurs Minecraft"
width={1000}
height={563}
className="rounded-xl shadow-xl w-full h-auto"
/>
</div>
</div>
);
2025-07-29 06:16:52 +02:00
}