- 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`.
25 lines
531 B
TypeScript
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>
|
|
);
|
|
}
|