Skip to content

Commit 92e1baa

Browse files
authored
Merge pull request #4 from recursivezero/develop
added internship blog; update career and team name
2 parents 8a4eaf4 + 8e1606f commit 92e1baa

File tree

10 files changed

+121
-11
lines changed

10 files changed

+121
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ blog added
4848
layout changed
4949
astro boilerplate
5050

51+
## [1.0.0] - 2025-12-31
52+
53+
- Update team, career and blog
54+
5155
### [Unreleased]
5256

5357
Here we write upgrading notes for brands. It's a team effort to make them as straightforward as possible.

domain.code-workspace

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@
170170
},
171171
"zenMode.centerLayout": false,
172172
"cSpell.words": [
173+
"Poorna",
173174
"withastro"
174175
],
175176
"workbench.editor.limit.excludeDirty": true,
@@ -191,7 +192,8 @@
191192
"titleBar.activeBackground": "#010010",
192193
"titleBar.activeForeground": "#e7e7e7",
193194
"titleBar.inactiveBackground": "#01001099",
194-
"titleBar.inactiveForeground": "#e7e7e799"
195+
"titleBar.inactiveForeground": "#e7e7e799",
196+
"tab.activeBorder": "#040043"
195197
},
196198
}
197199
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@recursivezero/domain",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"main": "src/index.js",
55
"author": {
66
"name": "Founder",
@@ -25,7 +25,7 @@
2525
"github",
2626
"template"
2727
],
28-
"contributors": [],
28+
"contributors": [ ],
2929
"timestamp": {
3030
"createdOn": "Sun, 07 Jan 2024 00:00:00 +05:30",
3131
"updatedOn": "Sun,15 June 2025 02:10:39 +05:30"

public/assets/images/blog-6.png

2.16 MB
Loading

src/components/BlogCard.astro

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ interface Props {
1010
}
1111
1212
const { url, title, description, image, author, date, height = "auto" } = Astro.props;
13+
const imageUrl = image;
14+
console.log({ image });
1315
---
1416

1517
<article class="group relative transition-all duration-300 hover:-translate-y-1">
@@ -18,7 +20,7 @@ const { url, title, description, image, author, date, height = "auto" } = Astro.
1820
<div class="relative">
1921
<figure class={`overflow-hidden ${typeof height === "number" ? `h-[${height}px]` : `h-[${height}]`}`}>
2022
<img
21-
src={image}
23+
src={imageUrl}
2224
alt={title}
2325
loading="lazy"
2426
class="h-full w-full object-cover duration-700 group-hover:scale-110"

src/content.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const collections = {
1717
schema: z.object({
1818
title: z.string(),
1919
date: z.date(),
20-
image: z.string().url(),
20+
image: z.string(),
2121
description: z.string().optional(),
2222
author: z.string().optional()
2323
})

src/content/blog/ayush.md

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
---
2+
title: "My Internship Journey"
3+
description: "A summary of my learnings and contributions during my recent internship."
4+
date: 2025-07-20
5+
image: "/assets/images/blog-6.png"
6+
author: "Ayush Tyagi"
7+
---
8+
9+
## My Internship Journey
10+
11+
I learnt a lot of new things during my time in the internship, both academically and professionally.
12+
It provided me with a practical glimpse into the corporate world. Our mentor was great, always there to help us out whenever we got stuck or had questions.
13+
14+
---
15+
16+
## 🏛️ Projects I Worked On
17+
18+
I worked on the following things during the internship:
19+
20+
### 🏠 [Panel](/panel)
21+
22+
I designed and structured header of the panel page, and added new features.
23+
24+
### 🗺️ [Canvas]
25+
26+
The canvas section was broken down into two interactive sub-pages. Both designed for creating quotes with unique features:
27+
28+
- [**Text**](/canvas/text) – This subpage allows users to create and display quotes, including the current time.
29+
- [**Quote**](/canvas/quote) – This subpage allows user to create, style, and download custom quotes.
30+
31+
This section is feature rich and can be used to create cool designs!
32+
33+
### 🔤 [HidenSeek](/hidenseek/grid)
34+
35+
I improved the style and layout of the grid, index and kbd pages.My goal was to make them look a lot better and feel more polished.
36+
37+
### 🔢 [Login]
38+
39+
I created a login page complete with an image slider that gave users a glimpse of the website. I also created the front end for signup, forgot-password and dashboard.
40+
41+
### 📚 [BetterAuth]
42+
43+
I created a login where the user can authenticate themselves using their github account. Sqlite was used to track cookies and store the information of the user.
44+
45+
### 📚 [Components]
46+
47+
I added three common components- back, share and keyboard, and also ensured that they were integrated across all the different pages where they were needed.
48+
49+
### 🔮 [Others]
50+
51+
I worked on several other pages, fixing bugs and adding new components to them.
52+
53+
---
54+
55+
## ⚙️ Tech I Explored
56+
57+
Things I learnt during this internship are:
58+
59+
### 🚀 Astro Framework
60+
61+
I learnt the implementation of astro framework and its need along with the benefits of using it.
62+
63+
### 🗺️ Html2canvas
64+
65+
This is a js library that takes the screenshot of the page, it was implemented in quote.astro page.
66+
67+
### 🗣️ Focus/Blur
68+
69+
`focus()` and `blur()` are methods used to show and hide the keyboard. This is an useful and important feature for mobile and ipad users.
70+
71+
### 📚 BetterAuth
72+
73+
BetterAuth is a full-stack authentication library designed to simplify common user authentication patterns in an application. I implemented login via github using betterauth.
74+
75+
### 💻 Git & GitHub
76+
77+
I learnt to configure git and github, and understood the working of branches, pull requests, and merging.
78+
79+
### 💻 Visual Studio Code (VS Code)
80+
81+
I used vscode as my primary development environment throughout the internship.
82+
Also used project manager extension, it made working on several projects easier.
83+
Used extensions like Prettier,ESLint, and Astro Language Tools to write clean and consistent code.
84+
85+
---
86+
87+
## 🙏 What I Took Away (And a Big Thanks!)
88+
89+
This internship was a big help. I'm grateful for the chance to actually use what I've been learning in a real work setting. Our mentor was a huge help, and I really appreciate all the support and guidance I got from the team.

src/pages/about.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ import "../assets/styles/about.css";
2626
<p class="team__role">Founder & CEO</p>
2727
</div>
2828
<div class="team__card">
29-
<h3 class="team__name">Omkar Chebale</h3>
30-
<p class="team__role">Lead Developer</p>
29+
<h3 class="team__name">Poorna Chandra</h3>
30+
<p class="team__role">Python Developer</p>
3131
</div>
3232
</div>
3333
</section>

src/pages/career.astro

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,18 @@ import "../assets/styles/career.css";
1616

1717
<div>
1818
<div class="job__card">
19-
<h3 class="job__title">Senior Frontend Developer</h3>
19+
<h3 class="job__title">MBA Interns</h3>
20+
<p class="job__description">
21+
We're looking for an MBA Interns who can help us to do Field work and Demos of our product and user
22+
onboarding, preferred candidate from Surat, Gujarat.
23+
</p>
24+
<div class="tag__container">
25+
<span class="tag tag--remote">Remote</span>
26+
<span class="tag tag--fulltime">Full-time</span>
27+
</div>
28+
</div>
29+
<div class="job__card">
30+
<h3 class="job__title">Frontend Developer</h3>
2031
<p class="job__description">We're looking for an experienced frontend developer to join our team.</p>
2132
<div class="tag__container">
2233
<span class="tag tag--remote">Remote</span>
@@ -26,7 +37,9 @@ import "../assets/styles/career.css";
2637

2738
<div class="job__card">
2839
<h3 class="job__title">Backend Engineer</h3>
29-
<p class="job__description">Join us in building scalable backend solutions.</p>
40+
<p class="job__description">
41+
Join us in building scalable backend solutions, experienced with nodejs based backend technologies.
42+
</p>
3043
<div class="tag__container">
3144
<span class="tag tag--hybrid">Hybrid</span>
3245
<span class="tag tag--fulltime">Full-time</span>

0 commit comments

Comments
 (0)