export interface PowerOfAttorneyProps {
  text: string;
  agreementDate: string;
  name: string;
  addresses: string;
}

export const powerOfAttorneyData = {
  text: `I, Lelis Guardado, a resident of the State of TX, give The Credit Pros, its officers, employees 
  and agents, the necessary power and authority, in and on my behalf, to act as my attorney-in-fact in 
  order to undertake and perform the following matters only as set forth herein: obtaining information, 
  including but not limited to credit reports in my name, over the telephone, fax, and internet, through 
  written or online correspondence from credit bureaus, creditors, or collection agencies. and disputing 
  debts appearing on my credit reports as well as to request verification for them. 
  <br /> <br />

  I hereby direct said record holder authorization to release any requested information upon the presentation 
  of this Limited Power of Attorney. I hereby release the bearer of this authorization as well as the recipient, 
  including but not limited to, the Custodian of such records, Repository of the Court Records, Credit Bureaus 
  (TransUnion, Equifax, Experian, Innovis, Chexsystems), consumer reporting agencies, retail business establishments, 
  lending institutions, student loan agencies (public and/or private), from liability including whatever kind which 
  may at any time result to me, my heirs, family or associates, because of compliance with this authorization to 
  release information, or any attempt to comply with it.
<br /> <br />

I have the right to revoke or terminate this Limited Power of Attorney at any time. This Limited Power of 
Attorney shall terminate 12 months from the date of execution set forth below. My attorney-in-fact shall not 
be liable for any acts or decisions made in good faith and pursuant to the terms herein. I understand that 
this Limited Power of Attorney does not provide any form of legal representation, and The Credit Pros is not 
a law firm. All issues pertaining to validity, interpretation, and administration of this Limited Power of 
Attorney shall be determined in accordance with the laws of the State of New Jersey.

  `,

  agreementDate: '12/22/2023',
  name: 'Lelis Guardado',
  addresses: '188.115.177.112, 141.101.104.75',
};

export const hippaPoaData = {
  text: `
    I, Lelis Guardado, give permission to The Credit Pros  to have full disclosure of my protected health 
    information as it pertains to all applicable instances of my protected health information appearing on 
    my personal credit file.

    <br /><br />

    Said information to be disclosed includes all:

    <br /><br />

    <ul class="list-decimal list-inside">
      <li>Medical Records;</li>
      <li>Treatment Records;</li>
      <li>Diagnostic Records;</li>
      <li>Billing Records; and </li>
      <li>Insurance Records.</li>
    </ul>

    <br />

    This protected health information is being used or disclosed for the following purposes addressing specific issues 
    that appear on my credit file.

    <br /><br />

    This authorization expires one year from the date this HIPAA POA was executed.

    <br /><br />

    If the person or entity receiving this information is not a health care provider or health plan covered by federal 
    privacy regulations, the information described above may be disclosed to other individuals or institutions and no 
    longer protected by these regulations. 

    <br /><br />

    Finally, you may revoke this authorization in writing at any time by sending written notification to The Credit Pros.  

    <br /><br />

    Your notice will not apply to actions taken by the requesting person/entity prior to the date they receive your written request to revoke authorization.
  `,

  agreementDate: '12/22/2023',
  name: 'Lelis Guardado',
  addresses: '188.115.177.112, 141.101.104.75',
};

export interface SubItemsProps {
  id: number;
  title: string;
  text: string;
  number?: string;
}

export interface AdverseInfoListProps {
  text: string;
  subItems: SubItemsProps[];
  agreementDate: string;
  name: string;
  addresses: string;
}

export const adverseInfoListData = {
  text: `
  Lelis Guardado

  <br /><br />
  
  Below is a list of the accounts that The Credit Pros has reviewed during your Initial Credit Action Plan.  
  Based upon the information The Credit Pros has gathered, we have supplied the following list of accounts 
  in which you have self-identified to include in our investigations.  We have also listed the reason that 
  you have provided as to why you believe this account information needs to be updated, corrected or removed 
  from your credit report(s):  
  `,
  subItems: [
    {
      id: 1,
      title: 'BRINKS HOME',
      text: 'I attest that I do not recognize this item',
      number: '3028526033807196',
    },
    {
      id: 2,
      title: 'NOWCOM/THE AUTO SALES',
      text: 'I attest that I do not recognize this item',
    },
    {
      id: 3,
      title: 'NOWCOM/WESTLAKE FINANC',
      text: 'I attest that I do not recognize this item',
    },
  ],
  agreementDate: '12/22/2023',
  name: 'Lelis Guardado',
  addresses: '188.115.177.112, 141.101.104.75',
};
