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 (
|
2025-07-29 07:44:41 +02:00
|
|
|
<div className="min-h-screen bg-[#0e0e10] text-amber-50 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">
|
2025-07-29 07:44:41 +02:00
|
|
|
<Palette className="w-8 h-8 text-amber-50" />
|
2025-07-29 06:16:52 +02:00
|
|
|
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
|
|
|
}
|