You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Portfolio/src/app/cv/page.tsx

13 lines
269 B

import { Cv } from "./Cv";
import { dataDirLocation } from "@utils/constants";
import { readCvJson } from "@utils/cv";
export default async function Page() {
const cv = await readCvJson(dataDirLocation);
return <Cv data={cv} />;
}
export const revalidate = 3600;