From ea99354cdc9fd63eec7bbac5aca550f2dbae8d0f Mon Sep 17 00:00:00 2001 From: saksham Date: Fri, 14 Oct 2022 17:18:35 +0530 Subject: [PATCH] texhnologies component added --- src/assets/index.ts | 12 +- src/components/Button.tsx | 14 ++- src/components/CombCell.tsx | 78 +++++------- src/components/Footer.tsx | 7 +- src/components/Navbar.tsx | 8 +- .../blog-page-components/MainCard.tsx | 2 +- .../section-comonents/why-koders/Info.tsx | 4 +- src/helper/index.ts | 6 + src/pages/ReadMoreBlog.tsx | 1 + src/sections/Hero.tsx | 4 +- src/sections/Pricing.tsx | 5 +- src/sections/Technologies.tsx | 114 +++++++----------- src/sections/WhyKoders.tsx | 7 +- tailwind.config.js | 15 ++- 14 files changed, 128 insertions(+), 149 deletions(-) diff --git a/src/assets/index.ts b/src/assets/index.ts index 77c93cf..7ff0005 100644 --- a/src/assets/index.ts +++ b/src/assets/index.ts @@ -98,7 +98,7 @@ export const toolsAndtechLogo = [ { src: tailwind, x: "left-[45%]", y: "top-[0]" }, { src: chakra, x: "left-[45%]", y: "top-[0]" }, { src: next, x: "left-[45%]", y: "top-[0]" }, - { src: express, x: "left-[45%]", y: "top-[0]" }, + // { src: express, x: "left-[45%]", y: "top-[0]" }, { src: react, x: "left-[45%]", y: "top-[0]" }, { src: html, x: "left-[45%]", y: "top-[0]" }, { src: css, x: "left-[45%]", y: "top-[0]" }, @@ -112,23 +112,23 @@ export const toolsAndtechLogo = [ { src: keras, x: "left-[45%]", y: "top-[0]" }, { src: flutter, x: "left-[45%]", y: "top-[0]" }, { src: dart, x: "left-[45%]", y: "top-[0]" }, - { src: ios, x: "left-[45%]", y: "top-[0]" }, - { src: android, x: "left-[45%]", y: "top-[0]" }, + // { src: ios, x: "left-[45%]", y: "top-[0]" }, + // { src: android, x: "left-[45%]", y: "top-[0]" }, { src: firebase, x: "left-[45%]", y: "top-[0]" }, - { src: go, x: "left-[45%]", y: "top-[0]" }, + // { src: go, x: "left-[45%]", y: "top-[0]" }, { src: rust, x: "left-[45%]", y: "top-[0]" }, { src: ruby, x: "left-[45%]", y: "top-[0]" }, { src: tensorflow, x: "left-[45%]", y: "top-[0]" }, { src: pytorch, x: "left-[45%]", y: "top-[0]" }, { src: docker, x: "left-[45%]", y: "top-[0]" }, - { src: rails, x: "left-[45%]", y: "top-[0]" }, + // { src: rails, x: "left-[45%]", y: "top-[0]" }, { src: portainer, x: "left-[45%]", y: "top-[0]" }, { src: grafana, x: "left-[45%]", y: "top-[0]" }, { src: teamCity, x: "left-[45%]", y: "top-[0]" }, { src: redmine, x: "left-[45%]", y: "top-[0]" }, { src: hasura, x: "left-[45%]", y: "top-[0]" }, { src: cloud, x: "left-[45%]", y: "top-[0]" }, - { src: stripe, x: "left-[45%]", y: "top-[0]" }, + // { src: stripe, x: "left-[45%]", y: "top-[0]" }, { src: twilio, x: "left-[45%]", y: "top-[0]" }, ]; diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 2ea8968..20386f7 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -6,8 +6,16 @@ interface Props { logo?: string; hoverLogo?: string; OnClick: () => void; + logoStyle?: string; } -const Button = ({ className, text, logo, OnClick, hoverLogo }: Props) => { +const Button = ({ + className, + text, + logo, + OnClick, + hoverLogo, + logoStyle, +}: Props) => { const [iconStyle, setIconStyle] = useState(""); return (