2026-02-27 17:46:54 +01:00
|
|
|
import type { Metadata } from 'next';
|
2026-02-28 09:57:06 +01:00
|
|
|
import { ColorManipulation } from '@/components/color/ColorManipulation';
|
|
|
|
|
import { AppPage } from '@/components/layout/AppPage';
|
2026-02-27 17:46:54 +01:00
|
|
|
import { getToolByHref } from '@/lib/tools';
|
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-28 10:34:42 +01:00
|
|
|
export const metadata: Metadata = { title: tool.title, description: tool.summary };
|
2026-02-26 12:07:21 +01:00
|
|
|
|
2026-02-28 09:57:06 +01:00
|
|
|
export default function ColorPage() {
|
|
|
|
|
return (
|
2026-03-01 10:01:28 +01:00
|
|
|
<AppPage>
|
2026-02-28 09:57:06 +01:00
|
|
|
<ColorManipulation />
|
|
|
|
|
</AppPage>
|
|
|
|
|
);
|
2026-02-22 21:35:53 +01:00
|
|
|
}
|