@@ -18,17 +18,20 @@ export default function buildNavLinks(useBaseUrl, latestVersions = {}) {
1818 const trUserGuideHref = useBaseUrl (
1919 `/docs/desktop-applications/rmc-totalrisk/users-guide/${ latestVersions [ 'desktop-applications/rmc-totalrisk/users-guide' ] || 'v1.0' } /preface` ,
2020 ) ;
21- const trAppHref = useBaseUrl (
22- `/docs /desktop-applications/rmc-totalrisk/applications-guide/ ${ latestVersions [ 'desktop-applications/rmc-totalrisk/applications-guide' ] || 'v1.0' } /preface` ,
21+ const trVerifPdfHref = useBaseUrl (
22+ '/source-documents /desktop-applications/rmc-totalrisk/verification-report/RMC-TotalRisk-Verification-Report.pdf' ,
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 trTechRefPdfHref = useBaseUrl (
25+ '/source-documents /desktop-applications/rmc-totalrisk/technical-reference-manual/RMC-TotalRisk-Technical-Reference-Manual.pdf' ,
2626 ) ;
2727
2828 /* RMC-BestFit document links (third level) */
2929 const bestFitUserGuideHref = useBaseUrl (
3030 `/docs/desktop-applications/rmc-bestfit/users-guide/${ latestVersions [ 'desktop-applications/rmc-bestfit/users-guide' ] || 'v1.0' } /preface` ,
3131 ) ;
32+ const bestFitVerifPdfHref = useBaseUrl (
33+ '/source-documents/desktop-applications/rmc-bestfit/verification-report/RMC-BestFit-Verification-Report.pdf' ,
34+ ) ;
3235
3336 /* RMC-RFA document links (third level) */
3437 const rfaUserGuideHref = useBaseUrl (
@@ -45,6 +48,9 @@ export default function buildNavLinks(useBaseUrl, latestVersions = {}) {
4548 const lifeSimAppGuideHref = useBaseUrl (
4649 `/docs/desktop-applications/lifesim/applications-guide/${ latestVersions [ 'desktop-applications/lifesim/applications-guide' ] || 'v1.0' } /preface` ,
4750 ) ;
51+ const lifeSimTechRefPdfHref = useBaseUrl (
52+ '/source-documents/desktop-applications/lifesim/technical-reference-manual/LifeSim-Technical-Reference-Manual.pdf' ,
53+ ) ;
4854
4955 /* -------------------------------------------------------------------------------------------------------------------------------------------------------------- */
5056
@@ -167,7 +173,8 @@ export default function buildNavLinks(useBaseUrl, latestVersions = {}) {
167173 href : totalRiskHref ,
168174 children : [
169175 { id : 'tr-users-guide' , text : "RMC-TotalRisk User's Guide" , href : trUserGuideHref } ,
170- // Optionally add trAppHref/trVerifHref if needed in the menu
176+ { id : 'tr-verif-pdf' , text : 'RMC-TotalRisk Verification Report (PDF)' , href : trVerifPdfHref , target : '_blank' , rel : 'noopener noreferrer' } ,
177+ { id : 'tr-tech-ref-pdf' , text : 'RMC-TotalRisk Technical Reference Manual (PDF)' , href : trTechRefPdfHref , target : '_blank' , rel : 'noopener noreferrer' } ,
171178 ] ,
172179 } ,
173180 {
@@ -180,6 +187,7 @@ export default function buildNavLinks(useBaseUrl, latestVersions = {}) {
180187 text : "RMC-BestFit User's Guide" ,
181188 href : bestFitUserGuideHref ,
182189 } ,
190+ { id : 'bestfit-verif-pdf' , text : 'RMC-BestFit Verification Report (PDF)' , href : bestFitVerifPdfHref , target : '_blank' , rel : 'noopener noreferrer' } ,
183191 ] ,
184192 } ,
185193 {
@@ -199,6 +207,7 @@ export default function buildNavLinks(useBaseUrl, latestVersions = {}) {
199207 text : 'LifeSim Validation Studies' ,
200208 href : lifeSimValStudiesHref ,
201209 } ,
210+ { id : 'lifesim-tech-ref-pdf' , text : 'LifeSim Technical Reference Manual (PDF)' , href : lifeSimTechRefPdfHref , target : '_blank' , rel : 'noopener noreferrer' } ,
202211 /* {
203212 id: 'lifesim-applications-guide',
204213 text: 'LifeSim Applications Guide',
0 commit comments