Files
kit-ui/app/(app)/favicon/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
513 B
TypeScript

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