saahildcom/src/components/AboutPage/SkillSet.tsx
Neon 1a07d227df
Update SkillSet.tsx
Signed-off-by: Neon <neon@saahild.com>
2025-06-17 20:15:45 -04:00

50 lines
772 B
TypeScript

import { json } from "stream/consumers";
import Icon from "../static/Icons";
import {
bash,
bun,
coffeescript,
cpp,
csharp,
docker,
graphql,
html,
javascriptReact,
next,
npm,
prisma,
puppeteer,
python,
sass,
tailwind,
yarn,
ejs,
pnpm,
vscode,
git,
figma,
robots,
vercel,
visualStudio,
} from "../static/icons_list";
import "./skillset.css";
// import { SiKalilinux, SiPostman } from "react-icons/si";
import { mdiArch, mdiConsole, mdiLinux, mdiUbuntu } from "@mdi/js";
export function SkillSet() {
return (
<p>meow</p>
);
}
export function TechStack() {
return (
<p>meow</p>
);
}
export default function () {
return (
<div className="-mt-20">
<SkillSet />
<TechStack />
</div>
);
}