diff --git a/src/components/skill/skill.tsx b/src/components/skill/skill.tsx
new file mode 100644
index 0000000..2293db9
--- /dev/null
+++ b/src/components/skill/skill.tsx
@@ -0,0 +1,65 @@
+import { component$ } from "@builder.io/qwik";
+
+export default component$(() => {
+ return (
+
+
+
My expertise
+
+
+ {[
+ "Web Development",
+ "Open-source Contributor",
+ "Frontend",
+ "Backend",
+ "Testing",
+ "API Development",
+ "RESPONSIVE",
+ "Portfolio",
+ "REACT",
+ "Qwik",
+ "Automation",
+ "E-commerce",
+ ].map((x) => (
+ - {x}
+ ))}
+
+
+ {[
+ "Javascript",
+ "Typescript",
+ "Rust",
+ "Springboot",
+ "C",
+ "C++",
+ "C#",
+ "Java",
+ "Lua",
+ "E-commerce",
+ "JQuery",
+ "Qwik",
+ "React js",
+ "Next js",
+ "Node js",
+ "MySQL",
+ "Tailwind CSS",
+ "Sass",
+ "MongoDB",
+ "Cypress",
+ "Selenium",
+ "Playwright",
+ ].map((x) => (
+ - {x}
+ ))}
+
+
+
+
+ );
+});
diff --git a/src/global.css b/src/global.css
index 3dd1811..2fa9236 100644
--- a/src/global.css
+++ b/src/global.css
@@ -7,5 +7,5 @@
@tailwind utilities;
:root {
- @apply bg-background text-foreground;
+ @apply bg-dark text-light;
}
diff --git a/src/routes/404.tsx b/src/routes/404.tsx
index 7a94fe7..a11a899 100644
--- a/src/routes/404.tsx
+++ b/src/routes/404.tsx
@@ -7,7 +7,7 @@ import Social from "~/components/social/social";
export default component$(() => {
return (
{
return (
<>
+
>
);
});
diff --git a/tailwind.config.js b/tailwind.config.js
index 6bae9f2..b405241 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -10,13 +10,17 @@ export default {
secondary: colors.pink["500"],
success: colors.green["500"],
danger: colors.red["500"],
- warning: colors.yellow["500"],
+ warning: colors.yellow["300"],
info: colors.cyan["500"],
- foreground: colors.gray["50"],
- background: colors.gray["950"],
+ light: colors.gray["50"],
+ dark: colors.gray["950"],
},
extend: {
keyframes: {
+ move: {
+ "0%": { transform: "translate3d(0,0,0)" },
+ "100%": { transform: "translate3d(var(--tw-move,100%),0,0)" },
+ },
deepPulse: {
"0%, 100%": { opacity: 1 },
"50%": { opacity: 0 },
@@ -34,6 +38,7 @@ export default {
},
},
animation: {
+ move: "move 30s alternate linear infinite",
deepPulse: "deepPulse 1s alternate infinite",
deepBounce: "deepBounce 1s infinite",
around: "around 1s infinite",