Skip to content

Commit f4a27a2

Browse files
committed
fix: address Copilot review feedback
Signed-off-by: Gauarv Chaudhary <chaudharygaurav2004@gmail.com>
1 parent fae4a46 commit f4a27a2

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

src/app/writers/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default function WritersPage() {
5959
</svg>
6060
</a>
6161
<a
62-
href="https://twitter.com/keaboratory"
62+
href="https://twitter.com/Keployio"
6363
target="_blank"
6464
rel="noopener noreferrer"
6565
className="text-gray-400 hover:text-[#F89559] transition-colors"

src/components/sections/AboutSection.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"use client";
22

3-
import Image from "next/image";
4-
53
export function AboutSection() {
64
return (
75
<section

src/components/sections/CommunitySection.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"use client";
22

3-
import Image from "next/image";
4-
import { Users, MessageCircle, Heart } from "lucide-react";
3+
import { Users } from "lucide-react";
54

65
export function CommunitySection() {
76
return (

src/lib/writersData.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,14 @@ export interface Writer {
2222
/**
2323
* Array of writers - easily extendable by adding new Writer objects
2424
*
25-
* Note: Currently using placeholder images. Replace with actual writer photos.
26-
* Images should be placed in /public/images/writers/ directory.
25+
* NOTE: This is DUMMY DATA for demonstration purposes.
26+
* Social links point to generic URLs intentionally - they should be replaced
27+
* with actual writer profile URLs when real contributors are added.
28+
*
29+
* To add a real writer:
30+
* 1. Add their photo to /public/images/writers/
31+
* 2. Update the image path below
32+
* 3. Replace social links with their actual profile URLs
2733
*/
2834
export const writers: Writer[] = [
2935
{

0 commit comments

Comments
 (0)