Skip to content

Commit 3ceeaca

Browse files
committed
Update blog theme: Stripe-style colors, IBM Plex Sans font, Azure accent, improved typography, updated about page with resume content
1 parent a460ad6 commit 3ceeaca

13 files changed

Lines changed: 237 additions & 71 deletions

File tree

public/assets/ProfilePhoto1.jpg

640 KB
Loading

src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const isActive = (path: string) => {
4444
>
4545
<a
4646
href="/"
47-
class="absolute py-1 text-xl leading-8 font-semibold whitespace-nowrap sm:static sm:my-auto sm:text-2xl sm:leading-none"
47+
class="absolute py-1 text-xl leading-8 font-semibold font-heading whitespace-nowrap sm:static sm:my-auto sm:text-2xl sm:leading-none"
4848
>
4949
{SITE.title}
5050
</a>

src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
export const SITE = {
22
website: "https://www.chakrireddy.com/",
3-
author: "Chakri Reddy",
3+
author: "Chakradhar Reddy",
44
profile: "https://www.linkedin.com/in/chkry/",
5-
desc: "Product Guy and Senior Software Engineer G4, Full Stack @GRAB",
5+
desc: "Senior Software Engineer G4, Full Stack @GRAB and AI Evangelist. Passionate about building scalable web applications and exploring the latest in AI technology.",
66
title: "Chakradhar Reddy",
77
ogImage: "astropaper-og.jpg",
88
lightAndDarkMode: true,

src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const SOCIALS: Social[] = [
3737
},
3838
{
3939
name: "Mail",
40-
href: "mailto:chkryreddy@gmail.com",
40+
href: "mailto:ChakradharReddyPakala@gmail.com",
4141
linkTitle: `Send an email to ${SITE.title}`,
4242
icon: IconMail,
4343
},

src/data/blog/product-advisor-era-interfaces.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
author: Chakri Reddy
3-
pubDatetime: 2023-03-01T22:40:32Z
4-
modDatetime: 2023-03-01T22:40:32Z
3+
pubDatetime: 2025-03-01T22:40:32Z
4+
modDatetime: 2025-03-01T22:40:32Z
55
title: My Journey as a Product Advisor for Era Interfaces
66
slug: product-advisor-era-interfaces
77
featured: true

src/layouts/Layout.astro

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
import { Font } from "astro:assets";
32
import { ClientRouter } from "astro:transitions";
43
import { PUBLIC_GOOGLE_SITE_VERIFICATION } from "astro:env/client";
54
import { SITE } from "@/config";
@@ -61,10 +60,12 @@ const structuredData = {
6160
<link rel="canonical" href={canonicalURL} />
6261
<meta name="generator" content={Astro.generator} />
6362

64-
<!-- Load Font -->
65-
<Font
66-
cssVariable="--font-google-sans-code"
67-
preload={[{ subset: "latin", weight: 400, style: "normal" }]}
63+
<!-- Load Fonts from Google Fonts -->
64+
<link rel="preconnect" href="https://fonts.googleapis.com" />
65+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
66+
<link
67+
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap"
68+
rel="stylesheet"
6869
/>
6970

7071
<!-- General Meta Tags -->
@@ -140,7 +141,7 @@ const structuredData = {
140141
<!-- Minimal inline script to prevent FOUC - sets theme immediately -->
141142
<script is:inline>
142143
(function () {
143-
const initialColorScheme = ""; // "light" | "dark"
144+
const initialColorScheme = "light"; // "light" | "dark"
144145
const currentTheme = localStorage.getItem("theme");
145146

146147
function getPreferTheme() {

src/layouts/Main.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ const backUrl = SITE.showBackButton ? Astro.url.pathname : "/";
1616
<main data-backUrl={backUrl} id="main-content" class="app-layout pb-4">
1717
{
1818
"titleTransition" in props ? (
19-
<h1 class="text-2xl font-semibold sm:text-3xl">
19+
<h1 class="text-2xl font-semibold font-heading sm:text-3xl">
2020
{props.pageTitle[0]}
2121
<span transition:name={props.titleTransition}>
2222
{props.pageTitle[1]}
2323
</span>
2424
</h1>
2525
) : (
26-
<h1 class="text-2xl font-semibold sm:text-3xl">{props.pageTitle}</h1>
26+
<h1 class="text-2xl font-semibold font-heading sm:text-3xl">{props.pageTitle}</h1>
2727
)
2828
}
2929
<p class="mt-2 mb-6 italic">{props.pageDesc}</p>

src/layouts/PostDetails.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const nextPost =
9292
>
9393
<h1
9494
transition:name={slugifyStr(title.replaceAll(".", "-"))}
95-
class="inline-block text-2xl font-bold text-accent sm:text-3xl"
95+
class="inline-block text-2xl font-bold font-heading text-accent sm:text-3xl"
9696
>
9797
{title}
9898
</h1>

src/pages/about.md

Lines changed: 69 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,80 @@ title: "About me"
44
---
55

66
<a href="https://www.linkedin.com/in/chkry/">
7-
<img src="/assets/ProfilePhoto.jpg" alt="Chakri Reddy" style="width:150px;height:auto;border-radius:50%;margin:20px auto;display:block;" />
7+
<img src="/assets/ProfilePhoto.jpg" alt="Chakradhar Reddy Pakala" style="width:150px;height:auto;border-radius:50%;margin:20px auto;display:block;" />
88
</a>
99

10-
Hello, I'm **Chakradhar Reddy Pakala**, a Senior Software Engineer G4, Full Stack and Product Guy at [**GRAB | GxS Bank**](https://www.grab.com/sg/).
10+
## Hi, I'm **Chakradhar Reddy Pakala**,
1111

12-
I've been working in the tech industry for over 10+ years, and I've had the opportunity to work on a variety of projects, from small startups to large enterprises. I'm passionate about using technology to solve real-world problems, and I'm always looking for new ways to improve the user experience.
12+
a Strategic Product Leader and Full Stack Engineer with **10+ years** of experience scaling FinTech, Digital Banking, and IAM solutions. Currently, I'm a **Senior Software Engineer IV**, FullStack at [**Grab**](https://www.grab.com/sg/) in Bengaluru, India.
1313

14-
In my current role, I'm responsible for the product roadmap for a suite of fintech products. I work closely with stakeholders from across the company to gather requirements, prioritize features, and ensure that we're delivering products that meet the needs of our users.
14+
## What I Do
1515

16-
I'm also a strong believer in continuous learning and development. I'm always looking for new ways to improve my skills and knowledge, and I'm always happy to share what I know with others.
16+
I specialize in building end-to-end products and platforms that scale to millions of users. My expertise spans:
1717

18-
I'm excited to be using my skills and experience to help shape the future of fintech. I believe that technology has the power to make financial services more accessible, affordable, and transparent, and I'm committed to using my skills to make a positive impact on the world.
18+
- 🚀 **Languages & Frameworks** — JavaScript, Go, Java, React, Redux, Spring
19+
- 🔐 **Identity & Access Management** — OpenID, OAuth 2.0, WebAuthn, MFA, SSO
20+
- 🤖 **GenAI Tools** — GitHub Copilot Enterprise, GitLab Duo, Cursor
21+
- ☁️ **Cloud & Infrastructure** — AWS, Azure, Kubernetes, Docker, Terraform, Kafka
1922

20-
In my blog, I'll be sharing my thoughts on the latest trends in fintech, as well as my experiences as a Software Engineer and Product Manager. I'll also be sharing tips and advice for aspiring developers and product managers.
23+
## Career Highlights
2124

22-
I hope you'll join me on this journey!
25+
### At Grab (Jan 2022 - Present)
26+
27+
As a **Founding Engineer** at GXS Bank, I've built the customer experience platform serving **3M+ users** across Southeast Asia:
28+
29+
- Designed and implemented **GXS Help Center**, AI Chat-bot, GXS Flex Credit Card, and GXS Debit Card services using React and Go
30+
- Built **Phoenix** — Grab's internal high-throughput support platform serving millions of tickets and 1K+ concurrent users
31+
- Built **XtraMile** — A distributed internal operations portal used by 500+ users across 5 countries
32+
- Engineered a **rightsizing engine** based on the Goldilocks Principle, delivering **$60K** in annualized infrastructure cost savings
33+
- Decreased Help Center API response time by **30%** through code optimization
34+
- Led and mentored a team of 3 engineers for PAX Lending modules
35+
36+
### At HID Global (Jan 2018 - Jan 2022)
37+
38+
**Senior Technical Consultant** in the IAM Business Unit:
39+
40+
- Drove product vision and development for the **HID-Temenos IAM Integration**, generating **$5M in annual recurring revenue**
41+
- Built and presented hands-on product demos for Authentication as a Service — MFA, TOTP, Biometrics, Hardware Tokens using React & Spring
42+
- Architected reusable authentication components for Mobile (KONY) and Web (Temenos UXP) platforms
43+
- Created technical demos and POCs that accelerated product adoption and revenue
44+
45+
### At LG Soft India (May 2015 - Jan 2018)
46+
47+
**Software Engineer** building mobile software:
48+
49+
- Architected and deployed **HAKIM**, a custom automation framework achieving **40% reduction** in manual sanity testing
50+
- Built Telephony Android apps and Android framework for LG smartphones
51+
- Led UI design for LG smart devices, implementing internationalization for global users
52+
53+
## Skills & Certifications
54+
55+
**Architectures:** Microservices, RESTful APIs, Distributed Systems, Event-driven Architecture
56+
57+
**Tools:** Git, Docker, Kubernetes, ArgoCD, Jenkins, Terraform, Kafka, Redis, Elastic, Grafana
58+
59+
**Methodologies:** Agile (Scrum), SAFe® 5 Certified Agilist
60+
61+
## Awards & Recognition
62+
63+
- 🏅 **University Gold Medal** — Academic Excellence (Nov 2023)
64+
- 🦁 **Lion Award** — Critical security issue resolution in Temenos Integration (May 2021)
65+
- 🏆 **Innovation Award** — HAKIM Automation Test Suite for LG Smartphones (Aug 2016)
66+
- ⭐ Multiple **Spot Awards** — For exceptional delivery on KONY, Temenos UXP, Digital Persona, and HID-Temenos Integration
67+
68+
## What I Write About
69+
70+
On this blog, I share:
71+
72+
- Insights on **full-stack engineering** and system design
73+
- **AI tools and automation** in developer workflows
74+
- **Product development** lessons from building at scale
75+
- Curated **tech newsletters** with interesting reads
76+
77+
## Let's Connect
78+
79+
I'm always excited to discuss technology, collaborate on projects, or chat about the latest in tech!
80+
81+
📧 [ChakradharReddyPakala@gmail.com](mailto:ChakradharReddyPakala@gmail.com)
82+
💼 [LinkedIn](https://www.linkedin.com/in/chkry/)
83+
🐙 [GitHub](https://github.com/chkry)

src/pages/about2.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
layout: ../layouts/AboutLayout.astro
3+
title: "About me"
4+
---
5+
6+
<a href="https://www.linkedin.com/in/chkry/">
7+
<img src="/assets/ProfilePhoto.jpg" alt="Chakradhar Reddy Pakala" style="width:150px;height:auto;border-radius:50%;margin:20px auto;display:block;" />
8+
</a>
9+
10+
## Hey there! 👋
11+
12+
I'm **Chakradhar Reddy Pakala**, a Strategic Product Leader and Full Stack Engineer with **10+ years** of experience building scalable FinTech, Digital Banking, and IAM solutions. Currently, I'm a **Senior Software Engineer (G4)** at [**Grab**](https://www.grab.com/sg/) in Singapore.
13+
14+
## What I Do
15+
16+
I specialize in building end-to-end products and platforms that scale. My expertise spans:
17+
18+
- 🚀 **Full Stack Development** — React, Redux, Go, Java, Spring
19+
- 🔐 **Identity & Access Management** — OpenID, OAuth 2.0, WebAuthn, MFA, SSO
20+
- 🤖 **GenAI Tools** — GitHub Copilot Enterprise, GitLab Duo, Cursor
21+
- ☁️ **Cloud & Infrastructure** — AWS, Azure, Kubernetes, Docker, Terraform
22+
23+
## Career Highlights
24+
25+
### At Grab (2022 - Present)
26+
As a **Founding Engineer** at GXS Bank, I've built the customer experience platform serving **3M+ users** across Southeast Asia:
27+
28+
- Designed and implemented **GXS Help Center**, AI Chat-bot, and GXS Flex Credit Card services using React and Go
29+
- Built **Phoenix & XtraMile** — internal platforms serving millions of tickets and 500+ operations users across 5 countries
30+
- Engineered a **rightsizing engine** delivering $60K in annualized infrastructure cost savings
31+
- Reduced Help Center API response times by **30%** through optimization
32+
33+
### At HID Global (2018 - 2022)
34+
Led the **HID-Temenos IAM Integration** generating **$5M in annual recurring revenue**:
35+
36+
- Architected reusable authentication components for Mobile and Web platforms
37+
- Created technical demos and POCs that accelerated product adoption
38+
- Served as the bridge between engineering, pre-sales, and sales teams
39+
40+
### At LG Soft India (2015 - 2018)
41+
- Built **HAKIM**, a custom automation framework achieving 40% reduction in manual testing
42+
- Developed Telephony Android apps and framework for LG smartphones
43+
44+
## Awards & Recognition
45+
46+
- 🏅 **University Gold Medal** — Academic Excellence (2023)
47+
- 🦁 **Lion Award** — Critical security issue resolution at HID Global
48+
- 🏆 **Innovation Award** — HAKIM Automation Test Suite at LG
49+
50+
## What I Write About
51+
52+
On this blog, I share:
53+
54+
- Insights on **full-stack engineering** and system design
55+
- **AI tools and automation** in developer workflows
56+
- **Product development** lessons from building at scale
57+
- Curated **tech newsletters** with interesting reads
58+
59+
## Let's Connect
60+
61+
I'm always excited to discuss technology, collaborate on projects, or just chat about the latest in tech!
62+
63+
📧 [ChakradharReddyPakala@gmail.com](mailto:ChakradharReddyPakala@gmail.com)
64+
💼 [LinkedIn](https://www.linkedin.com/in/chkry/)
65+
🐙 [GitHub](https://github.com/chkry)

0 commit comments

Comments
 (0)