mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-06-24 10:44:21 +00:00
50 lines
772 B
TypeScript
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>
|
|
);
|
|
}
|