mirror of
https://github.com/Ladebeze66/devsite.git
synced 2025-12-15 21:46:49 +01:00
6 lines
281 B
TypeScript
6 lines
281 B
TypeScript
import ContentSectionCompetencesContainer from "../../components/ContentSectionCompetencesContainer";
|
|
|
|
export default function CompetencePage({ params }: { params: { slug: string } }) {
|
|
return <ContentSectionCompetencesContainer collection="competences" slug={params.slug} />;
|
|
}
|