export interface CommentFormData {
  title: string;
  notes: string;
  placeholders: {
    message: string;
    name: string;
    email: string;
  };
  checkboxLabel: string;
  buttonText: string;
  buttonIcon: string;
}

export const blogCommentsData: CommentFormData = {
  title: "Leave a comment",
  notes: "Your email address will not be published.Required fields are marked*",
  placeholders: {
    message: "Write Comment*",
    name: "Your Name*",
    email: "Your Email*",
  },
  checkboxLabel: "Save my name, email, and website in this browser for the next time I comment.",
  buttonText: "Post Comment",
  buttonIcon: "assets/images/icon/arrow.svg",
};
