refactor: externalize AppPage component and streamline all tool pages

This commit is contained in:
2026-02-25 18:04:32 +01:00
parent 71c22e465e
commit 7eeb8399b3
13 changed files with 113 additions and 139 deletions

View File

@@ -1,17 +1,13 @@
import MainConverter from '@/components/units/MainConverter';
import { AppPage } from '@/components/layout/AppPage';
export default function UnitsPage() {
return (
<div className="min-h-screen py-12">
<div className="max-w-7xl mx-auto px-8 space-y-8">
<div>
<h1 className="text-4xl font-bold mb-2">Units Converter</h1>
<p className="text-muted-foreground">
Smart unit converter with 187 units across 23 categories
</p>
</div>
<MainConverter />
</div>
</div>
<AppPage
title="Units Converter"
description="Smart unit converter with 187 units across 23 categories"
>
<MainConverter />
</AppPage>
);
}