{card.title}
62 |{card.subtitle}
63 |-
64 | {card.bullets.map((point, index) => (
65 |
- {point} 66 | ))} 67 |
├── public ├── favicon.png ├── robots.txt ├── manifest.json └── index.html ├── latestportfolio.pdf ├── src ├── Assets │ ├── Logo 1.png │ ├── Logo 2.png │ ├── about.jpg │ ├── about7.jpg │ ├── avatar2.png │ ├── avatar3.jpg │ ├── home-bg.jpg │ ├── home-main1.png │ ├── home-main2.png │ ├── Projects │ │ ├── loan.jpg │ │ ├── tedx.jpg │ │ ├── tmc.jpg │ │ ├── aivirex.jpg │ │ ├── fuzemee.jpg │ │ ├── hackerz.jpg │ │ ├── lernx.jpg │ │ ├── sales.jpg │ │ └── emotions.jpeg │ ├── Hrithika_Resume.pdf │ ├── latestportfolio.pdf │ └── pre.svg ├── components │ ├── Pre.js │ ├── ScrollToTop.js │ ├── About │ │ ├── Toolstack.js │ │ ├── Techstack.js │ │ ├── About.js │ │ ├── AboutCard.js │ │ └── MoreAbout.js │ ├── Home │ │ ├── Type.js │ │ ├── Home.js │ │ └── Home2.js │ ├── Projects │ │ ├── ProjectCards.js │ │ └── Projects.js │ ├── Resume │ │ └── ResumeNew.js │ ├── Particle.js │ ├── Footer.js │ └── Navbar.js ├── setupTests.js ├── App.test.js ├── index.css ├── reportWebVitals.js ├── index.js ├── App.css ├── App.js └── style.css ├── .gitignore └── package.json /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/public/favicon.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /latestportfolio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/latestportfolio.pdf -------------------------------------------------------------------------------- /src/Assets/Logo 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Logo 1.png -------------------------------------------------------------------------------- /src/Assets/Logo 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Logo 2.png -------------------------------------------------------------------------------- /src/Assets/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/about.jpg -------------------------------------------------------------------------------- /src/Assets/about7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/about7.jpg -------------------------------------------------------------------------------- /src/Assets/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/avatar2.png -------------------------------------------------------------------------------- /src/Assets/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/avatar3.jpg -------------------------------------------------------------------------------- /src/Assets/home-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/home-bg.jpg -------------------------------------------------------------------------------- /src/Assets/home-main1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/home-main1.png -------------------------------------------------------------------------------- /src/Assets/home-main2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/home-main2.png -------------------------------------------------------------------------------- /src/Assets/Projects/loan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Projects/loan.jpg -------------------------------------------------------------------------------- /src/Assets/Projects/tedx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Projects/tedx.jpg -------------------------------------------------------------------------------- /src/Assets/Projects/tmc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Projects/tmc.jpg -------------------------------------------------------------------------------- /src/Assets/Hrithika_Resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Hrithika_Resume.pdf -------------------------------------------------------------------------------- /src/Assets/Projects/aivirex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Projects/aivirex.jpg -------------------------------------------------------------------------------- /src/Assets/Projects/fuzemee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Projects/fuzemee.jpg -------------------------------------------------------------------------------- /src/Assets/Projects/hackerz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Projects/hackerz.jpg -------------------------------------------------------------------------------- /src/Assets/Projects/lernx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Projects/lernx.jpg -------------------------------------------------------------------------------- /src/Assets/Projects/sales.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Projects/sales.jpg -------------------------------------------------------------------------------- /src/Assets/latestportfolio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/latestportfolio.pdf -------------------------------------------------------------------------------- /src/Assets/Projects/emotions.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash-debug/Portfolio-HR/master/src/Assets/Projects/emotions.jpeg -------------------------------------------------------------------------------- /src/components/Pre.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | function Pre(props) { 3 | return
; 4 | } 5 | 6 | export default Pre; 7 | -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(29 | 23-year-old Business Associate and PGDM Big Data Analytics candidate at Goa 30 | Institute of Management, weaving together financial advisory, marketing, and 31 | talent experiences through the Corporate Recruitment Program 2023-24. 32 |
33 | 34 |10 |42 |11 | Hello everyone! I am Hrithika R from{" "} 12 | Chennai, India. 13 |
25 |
I am part of the PGDM Big Data Analytics cohort at Goa Institute of Management and the 14 | Corporate Recruitment Program 2023-24, after graduating with a B.E. in Computer Science (89.7%) 15 | from Chennai Institute of Technology. 16 |
17 |
18 | My work blends financial advisory, marketing strategy, content, and HR support. Whether I am 19 | enabling Rs 50L-1Cr mandates for Truvisory or designing campaigns for NGOs and MUN communities, I 20 | anchor every brief on empathy and data. 21 |
22 |
23 | Beyond the analytics and content desks, I enjoy: 24 |26 |
36 | 37 |- 27 |
29 |Mentoring budding coders through Young Mind Coders sessions. 28 | - 30 |
32 |Hosting AI, data science, and career conversations for 100+ audiences. 31 | - 33 |
35 |Curating experiences at cultural festivals and during my travels. 34 | 38 | "Work to express, not to impress; let your actions speak volumes and your passion shine!" 39 |
40 | 41 |
53 | I am intentional about building a career where data-backed decision making meets inclusive storytelling. 54 | Finance, marketing, human resources, and community programs intersect across my work, helping me translate 55 | complex ideas into relatable narratives. 56 |
57 | 58 |{card.subtitle}
63 |
23 | I thrive at the intersection of data, design, and human experiences. As a Business
24 | Associate at Truvisory, I collaborate with a three-member team to guide HNI clients
25 | through Rs 50L-1Cr mandates, nurture five marquee relationships, and drive up to Rs 40L
26 | in monthly business.
27 |
28 |
29 | I am currently pursuing the PGDM Big Data Analytics program at Goa Institute of
30 | Management (Corporate Recruitment Program 2023-24) after graduating with a B.E. in
31 | Computer Science (89.7%) from Chennai Institute of Technology.
32 |
33 |
34 | Twenty-one months of internships with The Green Pillars, The MUN Company, and FuzeMee
35 | sharpened my communication, public relations, and community partnership skills while
36 | keeping impact at the center of every brief.
37 |
38 |
39 | Fluent in English, Hindi, and Tamil, I enjoy designing data stories, teaching young
40 | coders, and hosting events that celebrate collaboration and innovation.
41 |
53 | Feel free to connect with me 54 |
55 |24 | Highlights from my Corporate Recruitment Program 2023-24 journey and full-time mandate. 25 |
26 |42 | Multi-month engagements that sharpened my communication, PR, marketing, and community partnership skills. 43 |
44 |78 | Technology-led explorations that combine analytics, automation, and continuous learning. 79 |
80 |114 | Roles that helped me champion storytelling, mentoring, and large-format event experiences. 115 |
116 |