This commit is contained in:
2025-01-28 13:37:53 +03:00
parent ec0f24e450
commit 5fb5a3d1cc
4 changed files with 92 additions and 53 deletions

View File

@ -5,18 +5,18 @@ import InfoItem from "@/components/info-item";
import Image from "next/image";
import SocialItem from "@/components/social-item";
// export async function generateStaticParams() {
// // Моканные данные участников
// const participants = [
// { slug: '1' },
// { slug: '2' },
// { slug: '3' },
// ];
//
// return participants.map(participant => ({
// slug: participant.slug,
// }));
// }
export async function generateStaticParams() {
// Моканные данные участников
const participants = [
{ slug: '1' },
{ slug: '2' },
{ slug: '3' },
];
return participants.map(participant => ({
slug: participant.slug,
}));
}
export default function Page() {
return(