@@ -22,8 +22,11 @@ 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 SAMPLE DATA for demonstration purposes.
26+ * When adding real writers, replace the placeholder values with actual data:
27+ * 1. Add their photo to /public/images/writers/
28+ * 2. Update the image path
29+ * 3. Replace social links with their actual profile URLs
2730 */
2831export const writers : Writer [ ] = [
2932 {
@@ -32,65 +35,46 @@ export const writers: Writer[] = [
3235 role : "Senior Technical Writer" ,
3336 bio : "Passionate about making complex testing concepts accessible to developers. Specializes in API testing and documentation best practices." ,
3437 image : "/images/writers/placeholder-1.svg" ,
35- socialLinks : {
36- twitter : "https://twitter.com" ,
37- github : "https://github.com" ,
38- linkedin : "https://linkedin.com"
39- }
38+ // Social links omitted - add real URLs when replacing with actual writer
4039 } ,
4140 {
4241 id : "writer-2" ,
4342 name : "Marcus Johnson" ,
4443 role : "DevOps Engineer & Writer" ,
4544 bio : "CI/CD enthusiast who loves writing about test automation, infrastructure, and developer productivity." ,
4645 image : "/images/writers/placeholder-2.svg" ,
47- socialLinks : {
48- github : "https://github.com" ,
49- linkedin : "https://linkedin.com"
50- }
46+ // Social links omitted - add real URLs when replacing with actual writer
5147 } ,
5248 {
5349 id : "writer-3" ,
5450 name : "Priya Sharma" ,
5551 role : "Full Stack Developer" ,
5652 bio : "Writes about end-to-end testing strategies, microservices, and building reliable software systems." ,
5753 image : "/images/writers/placeholder-3.svg" ,
58- socialLinks : {
59- twitter : "https://twitter.com" ,
60- website : "https://example.com"
61- }
54+ // Social links omitted - add real URLs when replacing with actual writer
6255 } ,
6356 {
6457 id : "writer-4" ,
6558 name : "Alex Rivera" ,
6659 role : "QA Lead & Educator" ,
6760 bio : "Bridges the gap between development and QA through comprehensive testing tutorials and guides." ,
6861 image : "/images/writers/placeholder-4.svg" ,
69- socialLinks : {
70- github : "https://github.com" ,
71- linkedin : "https://linkedin.com"
72- }
62+ // Social links omitted - add real URLs when replacing with actual writer
7363 } ,
7464 {
7565 id : "writer-5" ,
7666 name : "Emily Zhang" ,
7767 role : "Backend Developer" ,
7868 bio : "Focuses on database testing, performance optimization, and writing clean, testable code." ,
7969 image : "/images/writers/placeholder-5.svg" ,
80- socialLinks : {
81- twitter : "https://twitter.com" ,
82- github : "https://github.com"
83- }
70+ // Social links omitted - add real URLs when replacing with actual writer
8471 } ,
8572 {
8673 id : "writer-6" ,
8774 name : "David Park" ,
8875 role : "Open Source Contributor" ,
8976 bio : "Active contributor to testing frameworks. Writes about open source tools and community building." ,
9077 image : "/images/writers/placeholder-6.svg" ,
91- socialLinks : {
92- github : "https://github.com" ,
93- website : "https://example.com"
94- }
78+ // Social links omitted - add real URLs when replacing with actual writer
9579 }
9680] ;
0 commit comments