diff --git a/assets/images/tab-icons/turbine.svg b/assets/images/tab-icons/turbine.svg new file mode 100644 index 0000000..cdca152 --- /dev/null +++ b/assets/images/tab-icons/turbine.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/projectfiles/icons.afdesign b/assets/projectfiles/icons.afdesign index 2ae6bba..b812c72 100644 Binary files a/assets/projectfiles/icons.afdesign and b/assets/projectfiles/icons.afdesign differ diff --git a/src/sections.ts b/src/sections.ts index d410bb4..6d20783 100644 --- a/src/sections.ts +++ b/src/sections.ts @@ -30,6 +30,8 @@ import solar from "~/assets/images/tab-icons/solar.svg"; import supermatter from "~/assets/images/tab-icons/supermatter.svg"; // @ts-expect-error: Parcel image import import shield from "~/assets/images/tab-icons/shield.svg"; +// @ts-expect-error: Parcel image import +import turbine from "~/assets/images/tab-icons/turbine.svg"; export interface SectionInfo { name: string; @@ -71,7 +73,7 @@ const sections: SectionInfo[] = [ text: "sing/tesl", icon: shield, }, - { page: "Gas_turbine", text: "GAS", icon: null }, + { page: "Gas_turbine", text: "GAST", icon: turbine }, { page: "Guide_to_Atmospherics", text: "atmos", icon: null }, { page: "Guide_to_Telecommunications", icon: null, text: "tcomm" }, ],