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-27 17:46:54 +01:00
|
|
|
export const metadata: Metadata = { title: tool.title };
|
2026-02-26 12:07:21 +01:00
|
|
|
|
2026-02-28 09:57:06 +01:00
|
|
|
export default function ColorPage() {
|
|
|
|
|
return (
|
|
|
|
|
<AppPage
|
|
|
|
|
title={tool.title}
|
|
|
|
|
description={tool.summary}
|
|
|
|
|
icon={tool.icon}
|
|
|
|
|
>
|
|
|
|
|
<ColorManipulation />
|
|
|
|
|
</AppPage>
|
|
|
|
|
);
|
2026-02-22 21:35:53 +01:00
|
|
|
}
|