Bogdan N.VP ENGINEERING
BN
LIVE · 12 COMMITS REVIEWED

Every commit, reviewed by AI.

Quality, security, business value, and maintainability — scored automatically on every commit, with concrete before/after fixes for what needs attention.

Review Signals

Selected period
0
Reviews Logged
+12
0%
Avg Quality
+3 pts
0%
Avg Security
−2 pts
0%
Avg Business Value
+5 pts
0
Issues Flagged
−4

Commit Review Workspace

12 shown
12 of 12 reviewed commits

add phone no

avriti9cdebe6bjattin18 Jun
75%
AI SummaryAdds contact information — a phone number, email, and WhatsApp call-to-action — to the contact page.
75%
Quality
20%
Security
80%
Business Value
83%
Maintainability
Findings (4)
Css Style Syntax Issueapp/contact/page.tsx:229

Replace text-(--color-text-secondary) with a valid class or correct CSS variable syntax.

Hardcoded Phone Numberapp/contact/page.tsx:219

Consider storing contact details in a secure config or environment variable.

Hardcoded WhatsApp Numbercomponents/whatsapp-cta.tsx:8

Move to configuration to reduce risk of exposure and improve maintainability.

Lacks Detailcommit message

Expand the commit message to describe what was added and why.

Suggested Fix
const contact = {
  phone: "+91 98765 43210",
  whatsapp: "+91 98765 43210",
};

<p>{contact.phone}</p>
const contact = {
  phone: process.env.NEXT_PUBLIC_CONTACT_PHONE,
  whatsapp: process.env.NEXT_PUBLIC_WHATSAPP_NUMBER,
};

<a href={`tel:${contact.phone}`}>{contact.phone}</a>