Files
kit-ui/app/(app)/units/page.tsx
Sebastian Krüger 28747a6c8f refactor: extract ColorManipulation component and pass icon/summary to AppPage
- Rename ColorPage → ColorManipulation (no AppPage wrapper inside)
- Move AppPage + title/description/icon to color/page.tsx, consistent with other tools
- AppPage now accepts icon prop directly; removes internal usePathname lookup and 'use client'
- All tool pages pass tool.summary as description and tool.icon as icon

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-28 09:57:06 +01:00

21 lines
494 B
TypeScript

import type { Metadata } from 'next';
import MainConverter from '@/components/units/MainConverter';
import { AppPage } from '@/components/layout/AppPage';
import { getToolByHref } from '@/lib/tools';
const tool = getToolByHref('/units')!;
export const metadata: Metadata = { title: tool.title };
export default function UnitsPage() {
return (
<AppPage
title={tool.title}
description={tool.summary}
icon={tool.icon}
>
<MainConverter />
</AppPage>
);
}