Skip to content

Commit 6a3d87e

Browse files
feat: add plain-language description under CommitPulse heading (JhaSourav07#1348)
## Description Closes JhaSourav07#1178 Added a short plain-language description under the CommitPulse heading so first-time visitors immediately understand what the product does. ## Pillar - [ ] Other (Bug fix, refactoring, docs) ## Checklist before requesting a review: - [x] I have read the `CONTRIBUTING.md` file. - [x] I have tested these changes locally (`localhost:3000`). - [x] My commits follow the Conventional Commits format. - [x] I have made sure that i have only one commit to merge in this PR.
1 parent b26dd56 commit 6a3d87e

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

app/page.test.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ describe('LandingPage', () => {
164164

165165
it('renders the main heading', () => {
166166
render(<LandingPage />);
167-
expect(screen.getByText(/Elevate Your/i)).toBeDefined();
168-
expect(screen.getByText('Contribution')).toBeDefined();
169-
expect(screen.getByText(/Story/i)).toBeDefined();
167+
const heading = screen.getByRole('heading', { level: 1 });
168+
expect(heading.textContent).toMatch(/Elevate Your/i);
169+
expect(heading.textContent).toMatch(/Contribution Story/i);
170170
});
171171

172172
it('renders the input field empty by default', () => {

app/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ export default function LandingPage() {
204204
transition={{ delay: 0.3 }}
205205
className="mx-auto max-w-2xl text-sm sm:text-lg leading-relaxed text-gray-600 dark:text-white/65 md:text-xl "
206206
>
207-
Stop settling for flat grids. Generate high-fidelity, 3D isometric monoliths that
208-
visualize your coding rhythm with professional precision.
207+
CommitPulse converts your GitHub commit history into a live, 3D animated badge. The more
208+
you commit, the taller your city grows! Embed it in your profile README with one line.
209209
</motion.p>
210210
</div>
211211

0 commit comments

Comments
 (0)