Files
havaran/src/app/portfolio-details/[id]/page.tsx
T
Alireza HassaniandCursor c49347061c Build Havaran storefront with Meshkee-backed blogs and portfolios.
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>
2026-08-09 15:54:40 +03:30

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}`);
}