mirror of
https://git.meshkee.com/Meshkee-Websites/havaran.git
synced 2026-08-11 20:40:58 +04:30
Clone product, solution, and company pages from the original site and wire articles/projects to the Meshkee Website API with pagination and media from the backend CDN. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
type PageProps = {
|
|
params: Promise<{ id: string }>;
|
|
};
|
|
|
|
export default async function PortfolioDetailsAliasPage({ params }: PageProps) {
|
|
const { id } = await params;
|
|
redirect(`/portfolios/${id}`);
|
|
}
|