Files
kit-ui/app/(app)/color/page.tsx

12 lines
299 B
TypeScript
Raw Normal View History

import type { Metadata } from 'next';
import { getToolByHref } from '@/lib/tools';
import { ColorPage } from '@/components/color/ColorPage';
const tool = getToolByHref('/color')!;
export const metadata: Metadata = { title: tool.title };
export default function Page() {
return <ColorPage />;
}