@@ -20,77 +20,55 @@ export interface Writer {
2020}
2121
2222/**
23- * Array of writers - easily extendable by adding new Writer objects
23+ * ⚠️ PLACEHOLDER DATA - REPLACE BEFORE PRODUCTION ⚠️
2424 *
25- * Note: Currently using placeholder images. Replace with actual writer photos.
26- * Images should be placed in /public/images/writers/ directory.
25+ * This array contains SAMPLE writers for demonstration purposes only.
26+ * Before deploying to production:
27+ * 1. Replace these entries with real writer information
28+ * 2. Add actual photos to /public/images/writers/
29+ * 3. Add real social media profile URLs
2730 */
2831export const writers : Writer [ ] = [
2932 {
30- id : "writer-1" ,
31- name : "Sarah Chen " ,
32- role : "Senior Technical Writer" ,
33- bio : "Passionate about making complex testing concepts accessible to developers. Specializes in API testing and documentation best practices ." ,
33+ id : "placeholder- writer-1" ,
34+ name : "[Sample] Writer One " ,
35+ role : "Technical Writer" ,
36+ bio : "This is placeholder data. Replace with a real writer's bio when adding actual contributors ." ,
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- }
4038 } ,
4139 {
42- id : "writer-2" ,
43- name : "Marcus Johnson " ,
44- role : "DevOps Engineer & Writer" ,
45- bio : "CI/CD enthusiast who loves writing about test automation, infrastructure, and developer productivity ." ,
40+ id : "placeholder- writer-2" ,
41+ name : "[Sample] Writer Two " ,
42+ role : "DevOps Writer" ,
43+ bio : "This is placeholder data. Replace with a real writer's bio when adding actual contributors ." ,
4644 image : "/images/writers/placeholder-2.svg" ,
47- socialLinks : {
48- github : "https://github.com" ,
49- linkedin : "https://linkedin.com"
50- }
5145 } ,
5246 {
53- id : "writer-3" ,
54- name : "Priya Sharma " ,
47+ id : "placeholder- writer-3" ,
48+ name : "[Sample] Writer Three " ,
5549 role : "Full Stack Developer" ,
56- bio : "Writes about end-to-end testing strategies, microservices, and building reliable software systems ." ,
50+ bio : "This is placeholder data. Replace with a real writer's bio when adding actual contributors ." ,
5751 image : "/images/writers/placeholder-3.svg" ,
58- socialLinks : {
59- twitter : "https://twitter.com" ,
60- website : "https://example.com"
61- }
6252 } ,
6353 {
64- id : "writer-4" ,
65- name : "Alex Rivera " ,
66- role : "QA Lead & Educator " ,
67- bio : "Bridges the gap between development and QA through comprehensive testing tutorials and guides ." ,
54+ id : "placeholder- writer-4" ,
55+ name : "[Sample] Writer Four " ,
56+ role : "QA Engineer " ,
57+ bio : "This is placeholder data. Replace with a real writer's bio when adding actual contributors ." ,
6858 image : "/images/writers/placeholder-4.svg" ,
69- socialLinks : {
70- github : "https://github.com" ,
71- linkedin : "https://linkedin.com"
72- }
7359 } ,
7460 {
75- id : "writer-5" ,
76- name : "Emily Zhang " ,
61+ id : "placeholder- writer-5" ,
62+ name : "[Sample] Writer Five " ,
7763 role : "Backend Developer" ,
78- bio : "Focuses on database testing, performance optimization, and writing clean, testable code ." ,
64+ bio : "This is placeholder data. Replace with a real writer's bio when adding actual contributors ." ,
7965 image : "/images/writers/placeholder-5.svg" ,
80- socialLinks : {
81- twitter : "https://twitter.com" ,
82- github : "https://github.com"
83- }
8466 } ,
8567 {
86- id : "writer-6" ,
87- name : "David Park " ,
68+ id : "placeholder- writer-6" ,
69+ name : "[Sample] Writer Six " ,
8870 role : "Open Source Contributor" ,
89- bio : "Active contributor to testing frameworks. Writes about open source tools and community building ." ,
71+ bio : "This is placeholder data. Replace with a real writer's bio when adding actual contributors ." ,
9072 image : "/images/writers/placeholder-6.svg" ,
91- socialLinks : {
92- github : "https://github.com" ,
93- website : "https://example.com"
94- }
9573 }
9674] ;
0 commit comments