Files
pragma-stack/frontend/src/app/[locale]/(authenticated)/projects/new/page.tsx
Felipe Cardoso da5affd613 fix(frontend): remove locale-dependent routing and migrate to centralized locale-aware router
- Replaced `next/navigation` with `@/lib/i18n/routing` across components, pages, and tests.
- Removed redundant `locale` props from `ProjectWizard` and related pages.
- Updated navigation to exclude explicit `locale` in paths.
- Refactored tests to use mocks from `next-intl/navigation`.
2026-01-03 01:34:53 +01:00

25 lines
531 B
TypeScript

/**
* New Project Page
*
* Multi-step wizard for creating new Syndarix projects.
*/
import type { Metadata } from 'next';
import { ProjectWizard } from '@/components/projects';
export const metadata: Metadata = {
title: 'New Project',
description: 'Create a new Syndarix project with AI-powered agents',
};
export default function NewProjectPage() {
return (
<div className="min-h-screen bg-background">
<div className="container mx-auto px-4 py-8">
<ProjectWizard />
</div>
</div>
);
}