Skip to content

Commit 2814bc2

Browse files
Merge pull request #216 from ajeetchaulagain/content-and-pages-cleanup
Dsiable projects page, rm contact page and some cleanups on about page
2 parents 5cef3a2 + 660bdab commit 2814bc2

13 files changed

Lines changed: 14 additions & 93 deletions

File tree

src/components/header-footer/Footer.tsx

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,7 @@ export const Footer = () => {
4444
<SocialMediaIcons />
4545
</SocialMediaLinksWrapper>
4646
<StyledParagraph>
47-
<em>{data.site.siteMetadata.author} © 2020.</em> All rights
48-
reserved.
49-
</StyledParagraph>
50-
<StyledParagraph>
51-
Proudly built with
52-
<em>
53-
{' '}
54-
React, Gatsby, GraphQL, Typescript, Styled Components, Netlify and
55-
Nodejs
56-
</em>
47+
© 2026 {data.site.siteMetadata.author}.
5748
</StyledParagraph>
5849
</FooterContentWrapper>
5950
</GradientOverlay>
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export const navItems: Record<string, string>[] = [
22
{ title: 'Home', url: '/' },
33
{ title: 'Blog', url: '/blog' },
4-
{ title: 'Projects', url: '/projects' },
4+
// { title: 'Projects', url: '/projects' }, // Projects page is currently disabled.
55
{ title: 'About', url: '/about' },
6-
{ title: 'Contact', url: '/contact' },
76
];

src/components/header-footer/styles.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ export const FooterContentWrapper = styled.div`
162162
justify-content: center;
163163
align-items: center;
164164
margin: 0 auto;
165-
${pt(6)};
166-
${pb(4)};
165+
${pt(8)};
166+
${pb(6)};
167167
${px(4)};
168168
169169
${breakpoint('xl')`
@@ -191,8 +191,8 @@ export const StyledParagraph = styled(Paragraph)`
191191
&& {
192192
color: ${({ theme }) =>
193193
theme.name === 'lightTheme'
194-
? theme.colors.blueBell
195-
: theme.colors.lightGrey};
194+
? theme.colors.secondaryText
195+
: theme.colors.primaryText};
196196
font-size: ${({ theme }) => theme.fontSizes.small};
197197
${mb(1)};
198198
}

src/components/social-media-icons/socialMediaLinks.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,6 @@ import {
99
import { IconType } from 'react-icons/lib';
1010

1111
export const socialMediaLinks: Record<string, string | IconType>[] = [
12-
{
13-
url: 'https://www.facebook.com/chaulagain.ajeet',
14-
ariaLabel: 'Facebook',
15-
IconComponent: FaFacebook,
16-
},
17-
{
18-
url: 'https://twitter.com/ajeetsweb',
19-
ariaLabel: 'Twitter',
20-
IconComponent: FaTwitter,
21-
},
2212
{
2313
url: 'https://www.linkedin.com/in/ajeet-chaulagain/',
2414
ariaLabel: 'Linkedin',
@@ -29,11 +19,6 @@ export const socialMediaLinks: Record<string, string | IconType>[] = [
2919
ariaLabel: 'Github',
3020
IconComponent: FaGithub,
3121
},
32-
{
33-
url: 'https://www.instagram.com/chaulagainajeet/',
34-
ariaLabel: 'Instagram',
35-
IconComponent: FaInstagram,
36-
},
3722
{
3823
url: 'https://ko-fi.com/ajeetchaulagain',
3924
ariaLabel: 'KoFi',

src/data/markdown/about.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ description: 'Pragmatic software engineer passionate about building scalable and
55

66
## About
77

8-
Hey — I’m Ajeet.
8+
👋 Hey — I’m Ajeet.
99

1010
I’m a Software Engineer with 5+ years of commercial experience building and maintaining long-lived, production systems across consulting and enterprise environments. I had been building software well before entering industry, with early foundations shaped through study and hands-on work — a craft I’ve stayed deeply engaged with over time.
1111

1212
I enjoy working on software where the challenge isn’t just shipping features, but making sound decisions that hold up as systems, teams, and requirements evolve. Much of my background has been in consulting, working across multiple teams and domains, which has shaped how I think about trade-offs, ownership, and building software that works in real-world conditions.
1313

14+
This site is where I write blog posts about what I learn along the way, across both side projects and my professional experience, and share things I explore and find interesting.
15+
1416
## What I Work With
1517

1618
Most of my recent commercial experience has been centred around a TypeScript-first stack, and that’s where I’m most effective.
@@ -22,8 +24,6 @@ Most of my recent commercial experience has been centred around a TypeScript-fir
2224

2325
These are the tools I’ve spent the most time with in production, but I’m more interested in choosing the right approach for the problem than being tied to any specific technology.
2426

25-
## What I’m Looking For
26-
27-
I’m interested in Senior Software Engineer roles where I can work on meaningful problems, contribute to well-structured systems, and help teams build software that remains reliable and maintainable as it grows.
27+
I’m interested in roles where I can continue to grow as an engineer and work with teams that value thoughtful engineering, quality, ownership, and continuous improvement. If that resonates, feel free to reach out at chaulagainajeet@gmail.com.
2828

29-
If you’d like to get in touch, feel free to reach out via email at chaulagainajeet@gmail.com — I’m always happy to connect and chat about software.
29+
I also use this site to share what I learn along the way — drawing from both side projects and my professional experience.

src/pages/contact.tsx

Lines changed: 0 additions & 54 deletions
This file was deleted.

src/pages/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import styled from 'styled-components';
44
import { mt } from 'styled-components-spacing';
55
import {
66
LandingPageHero,
7-
ProjectList,
7+
// ProjectList, //Project page is temporarily disabled.
88
MasterLayout,
99
NewsLetter,
1010
SEO,
@@ -78,7 +78,7 @@ const IndexPage = () => {
7878
size="large"
7979
/>
8080
</ContentRenderer>
81-
<ContentRenderer>
81+
{/* <ContentRenderer>
8282
<Heading level="h2" size="xlarge">
8383
Projects
8484
</Heading>
@@ -91,7 +91,7 @@ const IndexPage = () => {
9191
color="primary"
9292
size="large"
9393
/>
94-
</ContentRenderer>
94+
</ContentRenderer> */}
9595

9696
<ContentRenderer>
9797
<NewsLetter />
-19.4 KB
Loading
-29 KB
Loading
-26.1 KB
Loading

0 commit comments

Comments
 (0)