diff --git a/src/Client/src/components/NavBar.tsx b/src/Client/src/components/NavBar.tsx index 790b891..f520402 100644 --- a/src/Client/src/components/NavBar.tsx +++ b/src/Client/src/components/NavBar.tsx @@ -59,7 +59,7 @@ export default function NavBar() {
-
+
, + }, + { + name: "Microsoft Azure", + icon: , + }, + { + name: "Blazor", + icon: , + }, + { + name: "React", + icon: , + }, + { + name: "Databases", + icon: , + }, + { + name: "Docker", + icon: , + }, +]; + +interface Props { + className?: string | null; +} + +export default function TechIcons({ className }: Props) { + const defaultStyles = "mx-auto max-w-4xl"; + const styles = buildClassNames(className ? className : "", defaultStyles); + + return ( +
+

Tech

+
+ {techIcons.map((techIcon, index) => ( +
+ {techIcon.icon} +

{techIcon.name}

+
+ ))} +
+
+ ); +} diff --git a/src/Client/src/pages/HomePage.tsx b/src/Client/src/pages/HomePage.tsx index dc9b4db..d21aaee 100644 --- a/src/Client/src/pages/HomePage.tsx +++ b/src/Client/src/pages/HomePage.tsx @@ -1,5 +1,6 @@ import AnchorLink from "../components/AnchorLink"; import Subtitle from "../components/Subtitle"; +import TechIcons from "../components/TechIcons"; import Text from "../components/Text"; import Title from "../components/Title"; @@ -21,6 +22,8 @@ export default function HomePage() { heading up the tech as CTO at a cool startup called{" "} un:hurd music. + + ); }