43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
export const navigation = [
|
|
{
|
|
title: "Préambule",
|
|
type: "global",
|
|
links: [
|
|
{ title: "Memento Dev", href: "/" },
|
|
{ title: "Certifications", href: "/certifications" },
|
|
{ title: "Documentations", href: "/docs" },
|
|
],
|
|
},
|
|
{
|
|
title: "React",
|
|
type: "documentation",
|
|
links: [
|
|
{ title: "Introduction", href: "/docs/react" },
|
|
{ title: "Initialisation", href: "/docs/react/initialisation" },
|
|
{ title: "Syntaxe JSX", href: "/docs/react/jsx" },
|
|
{ title: "Premier composant", href: "/docs/react/premier-composant" },
|
|
{ title: "State et cycle de vie", href: "/docs/react/state-et-cycle-de-vie" },
|
|
{ title: "Hooks", href: "/docs/react/hooks" },
|
|
{ title: "Le hook useContext", href: "/docs/react/use-context" },
|
|
{ title: "Le hook useReducer", href: "/docs/react/use-reducer" },
|
|
],
|
|
},
|
|
{
|
|
title: "Merise",
|
|
type: "documentation",
|
|
links: [
|
|
{ title: "Introduction", href: "/docs/merise" },
|
|
{ title: "Dictionnaire de données", href: "/docs/merise/dictionnaire-de-donnees" },
|
|
{ title: "Modèle Conceptuel de Données", href: "/docs/merise/modele-conceptuel-de-donnees" },
|
|
],
|
|
},
|
|
{
|
|
title: "Communauté",
|
|
type: "global",
|
|
links: [
|
|
{ title: "Influenceurs", href: "/docs/communaute/influenceurs" },
|
|
{ title: "Partages et réutilisations", href: "/docs/communaute/partages" },
|
|
],
|
|
},
|
|
];
|