@@ -77,6 +77,11 @@ export function Page() {
7777 { href : "/lex/lithology" , title : "Lithologies" } ,
7878 "Names of geologic materials"
7979 ) ,
80+ h (
81+ LinkCard ,
82+ { href : "/lex/lith-atts" , title : "Lithology attributes" } ,
83+ "Names and descriptions of lithology attributes"
84+ ) ,
8085 h (
8186 LinkCard ,
8287 { href : "/lex/environments" , title : "Environments" } ,
@@ -87,6 +92,16 @@ export function Page() {
8792 { href : "/lex/economics" , title : "Economics" } ,
8893 "Economic uses of geologic materials"
8994 ) ,
95+ h (
96+ LinkCard ,
97+ { href : "/lex/minerals" , title : "Minerals" } ,
98+ "Mineral names and formulas"
99+ ) ,
100+ h (
101+ LinkCard ,
102+ { href : "/lex/structures" , title : "Structures" } ,
103+ "Names and descriptions of geologic structures"
104+ ) ,
90105
91106 h ( "p" , [
92107 h ( "strong" , h ( "a" , { href : "/sift" } , "Sift" ) ) ,
@@ -139,12 +154,12 @@ function SearchResults({ data }) {
139154 "lithologies" ,
140155 // "lithology_types",
141156 // "lithology_classes",
142- // "lithology_attributes",
157+ "lithology_attributes" ,
143158 "projects" ,
144159 "strat_name_concepts" ,
145160 // "strat_name_orphans",
146- // "structures",
147- // "minerals",
161+ "structures" ,
162+ "minerals" ,
148163 ] ;
149164
150165 return h . if ( Object . keys ( data ) . length > 0 ) ( "div.search-results" , [
@@ -157,7 +172,10 @@ function SearchResults({ data }) {
157172 category === "lithologies" ?
158173 "lithology" :
159174 category === "strat_name_concepts" ?
160- "strat-name-concepts" : category
175+ "strat-name-concepts" :
176+ category === "lithology_attributes" ?
177+ "lith-atts" :
178+ category
161179
162180 return h ( "div.search-category" , [
163181 h ( "h3.category" , ( category . charAt ( 0 ) . toUpperCase ( ) + category . slice ( 1 ) ) . replace ( / _ / g, " " ) ) ,
0 commit comments