2026-02-28 20:44:53 +01:00
|
|
|
import type { Metadata } from 'next';
|
|
|
|
|
import Calculator from '@/components/calculate/Calculator';
|
|
|
|
|
import { AppPage } from '@/components/layout/AppPage';
|
|
|
|
|
import { getToolByHref } from '@/lib/tools';
|
|
|
|
|
|
|
|
|
|
const tool = getToolByHref('/calculate')!;
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = { title: tool.title, description: tool.summary };
|
|
|
|
|
|
|
|
|
|
export default function CalculatePage() {
|
|
|
|
|
return (
|
2026-03-01 10:01:28 +01:00
|
|
|
<AppPage>
|
2026-02-28 20:44:53 +01:00
|
|
|
<Calculator />
|
|
|
|
|
</AppPage>
|
|
|
|
|
);
|
|
|
|
|
}
|