diff --git a/public/img/operator.jpg b/public/img/operator.jpg deleted file mode 100644 index 23b995f..0000000 Binary files a/public/img/operator.jpg and /dev/null differ diff --git a/public/img/operator.webp b/public/img/operator.webp new file mode 100644 index 0000000..badbb5a Binary files /dev/null and b/public/img/operator.webp differ diff --git a/src/components/HeroSection.tsx b/src/components/HeroSection.tsx index 2e98646..2f61e54 100644 --- a/src/components/HeroSection.tsx +++ b/src/components/HeroSection.tsx @@ -4,118 +4,118 @@ import { HeroTitle } from './HeroTitle'; import './prism/styles.css'; type HeroSectionProps = { - activeThemeName: string; - hasClickedThemePill: boolean; - showThemePillTooltip: boolean; - onThemePillClick: () => void; - cpuModeEnabled: boolean; + activeThemeName: string; + hasClickedThemePill: boolean; + showThemePillTooltip: boolean; + onThemePillClick: () => void; + cpuModeEnabled: boolean; }; export function HeroSection({ - activeThemeName, - hasClickedThemePill, - showThemePillTooltip, - onThemePillClick, - cpuModeEnabled, + activeThemeName, + hasClickedThemePill, + showThemePillTooltip, + onThemePillClick, + cpuModeEnabled, }: HeroSectionProps) { - return ( -
-
-
-
-
- Operator portrait -
-
-
-
-
-
- - - {showThemePillTooltip} -
-
- -
- -
- {cpuModeEnabled ? : } -
-

- Systems engineer in the making. From window managers and game engines to self-hosted infrastructure. -

-
-
- - This looks a lot cooler on bigger screens. -
-
+ return ( +
+
+
+
+
+ Operator portrait +
+
+
+
+
+ -
-
-
+ {showThemePillTooltip} +
+
+ +
-
- Operator portrait -
-
-
+
+ {cpuModeEnabled ? : } +
+

+ Systems engineer in the making. From window managers and game engines to self-hosted infrastructure. +

+
+
+ + This looks a lot cooler on bigger screens. +
+
+
-
- the operator - -
-
-
- ); +
+
+
+ +
+ Operator portrait +
+
+
+ +
+ the operator + +
+
+
+ ); }