At the moment, every project content has the same function : ``` ts export function TankView() { const viewContent = projectView(content); return renderView(viewContent); } export function TankInfo() { const navInfo = projectInfo(aboutInfo, relatedLinksInfo); return renderNavInfo(navInfo); } ``` The goal would be that every content ts file should only hold `const` with their project related content (no more function).