@@ -21,14 +21,20 @@ export default function buildNavLinks(useBaseUrl, latestVersions = {}) {
2121 const trAppHref = useBaseUrl (
2222 `/docs/desktop-applications/rmc-totalrisk/applications-guide/${ latestVersions [ 'desktop-applications/rmc-totalrisk/applications-guide' ] || 'v1.0' } /preface` ,
2323 ) ;
24- const trVerifHref = useBaseUrl (
25- `/docs/desktop-applications/rmc-totalrisk/verification-report/${ latestVersions [ 'desktop-applications/rmc-totalrisk/verification-report' ] || 'v1.0' } /preface` ,
24+ const trVerifPdfHref = useBaseUrl (
25+ '/source-documents/desktop-applications/rmc-totalrisk/verification-report/RMC-TotalRisk Verification Report.pdf' ,
26+ ) ;
27+ const trTechRefPdfHref = useBaseUrl (
28+ '/source-documents/desktop-applications/rmc-totalrisk/technical-reference-manual/RMC-TotalRisk Technical Reference Manual.pdf' ,
2629 ) ;
2730
2831 /* RMC-BestFit document links (third level) */
2932 const bestFitUserGuideHref = useBaseUrl (
3033 `/docs/desktop-applications/rmc-bestfit/users-guide/${ latestVersions [ 'desktop-applications/rmc-bestfit/users-guide' ] || 'v1.0' } /preface` ,
3134 ) ;
35+ const bestFitVerifPdfHref = useBaseUrl (
36+ '/source-documents/desktop-applications/rmc-bestfit/verification-report/RMC-BestFit Verification Report.pdf' ,
37+ ) ;
3238
3339 /* RMC-RFA document links (third level) */
3440 const rfaUserGuideHref = useBaseUrl (
@@ -45,6 +51,9 @@ export default function buildNavLinks(useBaseUrl, latestVersions = {}) {
4551 const lifeSimAppGuideHref = useBaseUrl (
4652 `/docs/desktop-applications/lifesim/applications-guide/${ latestVersions [ 'desktop-applications/lifesim/applications-guide' ] || 'v1.0' } /preface` ,
4753 ) ;
54+ const lifeSimTechRefPdfHref = useBaseUrl (
55+ '/source-documents/desktop-applications/lifesim/technical-reference-manual/LifeSim Technical Reference Manual.pdf' ,
56+ ) ;
4857
4958 /* -------------------------------------------------------------------------------------------------------------------------------------------------------------- */
5059
@@ -167,7 +176,8 @@ export default function buildNavLinks(useBaseUrl, latestVersions = {}) {
167176 href : totalRiskHref ,
168177 children : [
169178 { id : 'tr-users-guide' , text : "RMC-TotalRisk User's Guide" , href : trUserGuideHref } ,
170- // Optionally add trAppHref/trVerifHref if needed in the menu
179+ { id : 'tr-verif-pdf' , text : 'RMC-TotalRisk Verification Report (PDF)' , href : trVerifPdfHref , target : '_blank' , rel : 'noopener noreferrer' } ,
180+ { id : 'tr-tech-ref-pdf' , text : 'RMC-TotalRisk Technical Reference Manual (PDF)' , href : trTechRefPdfHref , target : '_blank' , rel : 'noopener noreferrer' } ,
171181 ] ,
172182 } ,
173183 {
@@ -180,6 +190,7 @@ export default function buildNavLinks(useBaseUrl, latestVersions = {}) {
180190 text : "RMC-BestFit User's Guide" ,
181191 href : bestFitUserGuideHref ,
182192 } ,
193+ { id : 'bestfit-verif-pdf' , text : 'RMC-BestFit Verification Report (PDF)' , href : bestFitVerifPdfHref , target : '_blank' , rel : 'noopener noreferrer' } ,
183194 ] ,
184195 } ,
185196 {
@@ -199,6 +210,7 @@ export default function buildNavLinks(useBaseUrl, latestVersions = {}) {
199210 text : 'LifeSim Validation Studies' ,
200211 href : lifeSimValStudiesHref ,
201212 } ,
213+ { id : 'lifesim-tech-ref-pdf' , text : 'LifeSim Technical Reference Manual (PDF)' , href : lifeSimTechRefPdfHref , target : '_blank' , rel : 'noopener noreferrer' } ,
202214 /* {
203215 id: 'lifesim-applications-guide',
204216 text: 'LifeSim Applications Guide',
0 commit comments