Skip to content

Commit

Permalink
Resume fix and bio change
Browse files Browse the repository at this point in the history
  • Loading branch information
santosh898 committed Nov 29, 2024
1 parent be63471 commit 8d94823
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 19 deletions.
Binary file added public/Sai_Santosh_Kottakota_AI_Dev_Resume.pdf
Binary file not shown.
Binary file modified public/Sai_Santosh_Kottakota_Resume.pdf
Binary file not shown.
3 changes: 1 addition & 2 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ const Header = () => {
<p className="max-w-2xl text-gray-300">
Experienced Tech Lead with expertise in modern web technologies, Web3,
and AI. Skilled in developing efficient, scalable, and innovative
solutions, including advanced Retrieval-Augmented Generation (RAG)
systems.
solutions using cutting edge tech.
</p>
<Button asChild variant="secondary" className="mt-4">
<Link
Expand Down
32 changes: 15 additions & 17 deletions src/components/Skills.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import LanceDBLogo from "@/logos/lancedb.svg";
import PhidataLogo from "@/logos/phidata.svg";

const seggregatedSkills = {
frontend: [
Frontend: [
{ name: "React", logo: ReactLogo },
{ name: "Typescript", logo: TypescriptLogo },
{ name: "Tailwind", logo: TailwindLogo },
Expand All @@ -54,7 +54,7 @@ const seggregatedSkills = {
{ name: "Redux", logo: ReduxLogo },
{ name: "Vitest/Jest", logo: VitestLogo },
],
backend: [
Backend: [
{ name: "Node.JS", logo: NodejsLogo },
{ name: "Postgres", logo: PostgresqlLogo },
{ name: "Firebase", logo: FirebaseLogo },
Expand All @@ -63,21 +63,13 @@ const seggregatedSkills = {
{ name: "Microservices", logo: MicroservicesLogo },
{ name: "Python", logo: PythonLogo },
],
misc: [
{ name: "Electron.JS", logo: ElectronLogo },
{ name: "Web Extensions", logo: WebextensionsLogo },
{ name: "WebRTC", logo: WebrtcLogo },
{ name: "Metamask", logo: MetamaskLogo },
{ name: "Thingsboard", logo: ThingsboardLogo },
{ name: "Infura", logo: InfuraLogo },
],
web3: [
Web3: [
{ name: "Solidity", logo: SolidityLogo },
{ name: "Ethers.JS", logo: EthersLogo },
{ name: "Hardhat", logo: HardhatLogo },
{ name: "Alchemy", logo: AlchemyLogo },
],
ai: [
AI: [
{
name: "OpenAI",
logo: OpenAILogo,
Expand All @@ -87,6 +79,14 @@ const seggregatedSkills = {
{ name: "LanceDB", logo: LanceDBLogo },
{ name: "Tensorflow.JS", logo: TensorflowLogo },
],
Misc: [
{ name: "Electron.JS", logo: ElectronLogo },
{ name: "Web Extensions", logo: WebextensionsLogo },
{ name: "WebRTC", logo: WebrtcLogo },
{ name: "Metamask", logo: MetamaskLogo },
{ name: "Thingsboard", logo: ThingsboardLogo },
{ name: "Infura", logo: InfuraLogo },
],
};

const ITEMS_TO_SHOW = 4;
Expand All @@ -98,7 +98,7 @@ function SkillSection({
onToggle,
}: {
title: string;
skills: typeof seggregatedSkills.frontend;
skills: typeof seggregatedSkills.Frontend;
expanded: boolean;
onToggle: () => void;
}) {
Expand All @@ -107,9 +107,7 @@ function SkillSection({

return (
<div className="flex-1 min-w-[250px]">
<h3 className="text-xl font-semibold mb-4 capitalize text-gray-100">
{title}
</h3>
<h3 className="text-xl font-semibold mb-4 text-gray-100">{title}</h3>
<div className="space-y-2">
{displayedSkills.map((skill) => (
<Card
Expand Down Expand Up @@ -165,7 +163,7 @@ const Skills = () => {
{(
Object.entries(seggregatedSkills) as [
keyof typeof seggregatedSkills,
typeof seggregatedSkills.frontend
typeof seggregatedSkills.Frontend
][]
).map(([category, skills]) => (
<SkillSection
Expand Down

0 comments on commit 8d94823

Please sign in to comment.