keystone-design-bootstrap 1.0.16 → 1.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keystone-design-bootstrap",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "Keystone Design Bootstrap - Sections, Elements, and Theme System for customer websites",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -19,7 +19,7 @@ export const BlogSection = ({
19
19
  title = "",
20
20
  subtitle = "",
21
21
  maxPosts,
22
- viewAllText = "",
22
+ viewAllText = "View All Posts",
23
23
  viewAllHref = "/blog",
24
24
  emptyMessage = "No blog posts available",
25
25
  recentLabel = "Recent",
@@ -28,18 +28,18 @@ const ContactSection = ({
28
28
  title = "",
29
29
  subtitle = "",
30
30
  firstNameLabel = "First name *",
31
- firstNamePlaceholder = "",
31
+ firstNamePlaceholder = "John",
32
32
  lastNameLabel = "Last name *",
33
- lastNamePlaceholder = "",
33
+ lastNamePlaceholder = "Doe",
34
34
  emailLabel = "Email *",
35
- emailPlaceholder = "",
35
+ emailPlaceholder = "john@example.com",
36
36
  phoneLabel = "Phone",
37
- phonePlaceholder = "",
37
+ phonePlaceholder = "(555) 123-4567",
38
38
  messageLabel = "Message *",
39
- messagePlaceholder = "",
40
- submitButtonText = "Submit",
41
- successMessage = "Success",
42
- thankYouMessage = "Thank you",
39
+ messagePlaceholder = "Tell us about your needs...",
40
+ submitButtonText = "Send Message",
41
+ successMessage = "Thank you!",
42
+ thankYouMessage = "We'll get back to you soon",
43
43
  }: ContactSectionProps) => {
44
44
  const [formStatus, setFormStatus] = useState<'idle' | 'submitting' | 'success' | 'error'>('idle');
45
45
 
@@ -17,7 +17,7 @@ export const TestimonialsHome = ({
17
17
  testimonials: testimonialsData,
18
18
  title = "",
19
19
  subtitle = "",
20
- viewAllText = "",
20
+ viewAllText = "View All Testimonials",
21
21
  viewAllHref = "/testimonials",
22
22
  emptyMessage = "No testimonials available",
23
23
  }: TestimonialsHomeProps) => {