Skip to content

Commit

Permalink
update info
Browse files Browse the repository at this point in the history
  • Loading branch information
saipraveenkondapalli committed Apr 19, 2024
1 parent 6963e02 commit 7be79f4
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 13 deletions.
6 changes: 3 additions & 3 deletions src/components/StackCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ const StackCard: React.FC<IStackCard> = ({ stack }) => {
_groupHover={{ color: "blue.500" }}
icon={stack?.icon}
/>
<LinkOverlay href={stack?.url} rel="noopener" isExternal>
{/*<LinkOverlay href={stack?.url} rel="noopener" isExternal>*/}
<Flex alignItems="center">
<Text size="sm" _hover={{ color: "blue.500" }}>
{stack?.name}
</Text>
</Flex>
</LinkOverlay>
{/*</LinkOverlay>*/}
</Flex>
</LinkBox>
</MotionBox>
);
)
};

export default StackCard;
51 changes: 43 additions & 8 deletions src/constant/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,33 @@ import { FaDatabase, FaGitAlt, FaJs, FaReact } from "react-icons/fa"
import { FaC, FaGithub, FaJava, FaLinkedin, FaPython } from "react-icons/fa6"
import {
SiAmazonaws,
SiAuth0,
SiAwslambda,
SiBootstrap,
SiChakraui,
SiDjango,
SiDocker,
SiExpress,
SiFirebase,
SiFlask,
SiGmail,
SiGoogle,
SiMongodb,
SiMysql,
SiNodedotjs,
SiPython,
SiSqlite,
SiTypescript,
} from "react-icons/si"
import { TbBrandGatsby, TbBrandNextjs } from "react-icons/tb"
import { Tooltip } from "@chakra-ui/react"

const TooltipTechIcon = ({ children, label }) => {
return (
<Tooltip label={label}>
<span>{children}</span>
</Tooltip>
)
}

const menuLinks = [
{ name: "About Me", route: "/about" },
Expand Down Expand Up @@ -109,6 +122,16 @@ const programmingLanguages = [
icon: <FaReact fontSize="20px" />,
url: "https://reactjs.org/",
},
{
name: "NextJS",
icon: <TbBrandNextjs fontSize="20px" />,
url: "https://nextjs.org/",
},
{
name: "Gatsby",
icon: <TbBrandGatsby fontSize="20px" />,
url: "https://www.gatsbyjs.com/",
},
]

const otherTechStacks = [
Expand Down Expand Up @@ -162,14 +185,26 @@ const sideProjects = [
alt: "Interview Prep Pro",
link: "/interview-prep-pro",
summary:
'"Interview Prep Pro" is a project that helps individuals prepare for coding interviews at top technology companies. It features over 1200 coding questions from 150+ companies, organized by category and company. It also includes links to Leetcode problems and has a feature that allows users to contribute questions to keep the resource relevant to the current job market.',
'"Interview Prep Pro" is a project that helps individuals prepare for coding interviews at top technology companies. It features over 1500 coding questions from 150+ companies, organized by category and company. It also includes links to Leetcode problems and has a feature that allows users to contribute questions to keep the resource relevant to the current job market.',
tech: [
<FaPython fontSize="20px" />,
<SiFlask fontSize="20px" />,
<SiMongodb fontSize="20px" />,
<SiBootstrap fontSize="20px" />,
<SiGoogle fontSize="20px" />,
<FaJs fontSize="20px" />,
<TooltipTechIcon label={"Node JS"}>
<SiNodedotjs fontSize="20px" />
</TooltipTechIcon>,
<TooltipTechIcon label={"Express JS"}>
<SiExpress fontSize="20px" />
</TooltipTechIcon>,
<TooltipTechIcon label={"MongoDB"}>
<SiMongodb fontSize="20px" />
</TooltipTechIcon>,
<TooltipTechIcon label={"Chakra UI"}>
<SiChakraui fontSize="20px" />
</TooltipTechIcon>,
<TooltipTechIcon label={"Auth0"}>
<SiAuth0 fontSize="20px" />
</TooltipTechIcon>,
<TooltipTechIcon label={"Typescript"}>
<SiTypescript fontSize="20px" />
</TooltipTechIcon>
],
},

Expand Down
Binary file added src/images/ipp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/pages/interview-prep-pro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
UnorderedList,
} from "@chakra-ui/react"
// @ts-ignore
import interviewPrepPro from "../images/interview.png"
import interviewPrepPro from "../images/ipp.png"
// @ts-ignore
import { FaExternalLinkAlt } from "react-icons/fa"
import Layout from "../components/Layout"
Expand All @@ -30,7 +30,7 @@ function InterviewPrepPro() {
<Button
p={5}
as="a"
href="https://interviewprep.pro"
href="https://interview-prep-pro.vercel.app"
target="_blank"
iconSpacing={2}
rightIcon={<FaExternalLinkAlt />}
Expand Down

0 comments on commit 7be79f4

Please sign in to comment.