mirror of
https://github.com/Ladebeze66/devsite.git
synced 2025-12-16 22:07:45 +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} />;
|
|
}
|