2026-02-27 17:46:54 +01:00
|
|
|
import type { Metadata } from 'next';
|
|
|
|
|
import { getToolByHref } from '@/lib/tools';
|
|
|
|
|
import { ColorPage } from '@/components/color/ColorPage';
|
2026-02-22 21:35:53 +01:00
|
|
|
|
2026-02-27 17:46:54 +01:00
|
|
|
const tool = getToolByHref('/color')!;
|
2026-02-22 21:35:53 +01:00
|
|
|
|
2026-02-27 17:46:54 +01:00
|
|
|
export const metadata: Metadata = { title: tool.title };
|
2026-02-26 12:07:21 +01:00
|
|
|
|
2026-02-27 17:46:54 +01:00
|
|
|
export default function Page() {
|
|
|
|
|
return <ColorPage />;
|
2026-02-22 21:35:53 +01:00
|
|
|
}
|