|
| 1 | +import type { Metadata } from 'next'; |
| 2 | +import LegalPageLayout from '@/components/LegalPageLayout'; |
| 3 | +import BusinessDisclaimer from '@/components/BusinessDisclaimer'; |
| 4 | +import { landingPageMetadata } from '@/lib/site-seo'; |
| 5 | + |
| 6 | +// NOTE (source-only, not rendered): Insert the registered legal entity name, |
| 7 | +// jurisdiction and registered address here once confirmed by the business owner. |
| 8 | + |
| 9 | +export const metadata: Metadata = landingPageMetadata({ |
| 10 | + title: 'Disclaimer | Proxy Tech Support', |
| 11 | + description: |
| 12 | + 'Proxy Tech Support provides paid IT career support, technical support, profile services and interview support. We are not an employer, do not sell jobs, and do not guarantee interviews, employment or salary outcomes.', |
| 13 | + canonical: 'https://proxytechsupport.com/disclaimer/', |
| 14 | +}); |
| 15 | + |
| 16 | +const LAST_UPDATED = 'August 8, 2026'; |
| 17 | + |
| 18 | +export default function DisclaimerPage() { |
| 19 | + return ( |
| 20 | + <LegalPageLayout |
| 21 | + title="Disclaimer" |
| 22 | + breadcrumbLabel="Disclaimer" |
| 23 | + lastUpdated={LAST_UPDATED} |
| 24 | + intro="This disclaimer explains the nature and limits of the services provided by Proxy Tech Support. Please read it carefully before purchasing or using any of our services." |
| 25 | + > |
| 26 | + <BusinessDisclaimer variant="full" style={{ margin: '1.25rem 0 1.75rem' }} /> |
| 27 | + |
| 28 | + <h2>Nature of our services</h2> |
| 29 | + <p> |
| 30 | + Proxy Tech Support provides paid IT career support, technical support, profile services and |
| 31 | + interview support to IT professionals. Our services include real-time job support, proxy |
| 32 | + interview support, profile engineering, interview mentoring, and job application & |
| 33 | + candidate marketing. These are advisory, preparatory and technical-support services. |
| 34 | + </p> |
| 35 | + |
| 36 | + <h2>We are not an employer and do not sell jobs</h2> |
| 37 | + <p> |
| 38 | + We are not an employer, a recruitment agency, or a staffing firm, and we do not publish job |
| 39 | + vacancies or sell employment. We do not sell jobs, vacancies, interview calls, recruiter |
| 40 | + responses, offers or placements. Employment decisions are made solely by employers. |
| 41 | + </p> |
| 42 | + |
| 43 | + <h2>What service fees cover</h2> |
| 44 | + <p> |
| 45 | + Service fees are charged only for the agreed support services, sessions, engagements or |
| 46 | + support periods. Fees are not placement fees and are not payments in exchange for a job, a |
| 47 | + vacancy, an interview call, a recruiter response, an offer, a salary or any employment |
| 48 | + outcome. |
| 49 | + </p> |
| 50 | + |
| 51 | + <h2>No guarantee of outcomes</h2> |
| 52 | + <p> |
| 53 | + We do not guarantee interviews, selection, recruiter responses, employment, compensation, |
| 54 | + promotions or career outcomes. Any results described on this website reflect individual |
| 55 | + experiences and are not promises of similar results. Career and employment outcomes depend on |
| 56 | + each customer’s skills, experience, preparation, effort, market conditions and |
| 57 | + independent employer decisions. |
| 58 | + </p> |
| 59 | + |
| 60 | + <h2>Salary and market information</h2> |
| 61 | + <p> |
| 62 | + Any salary or compensation figures shown on this website are indicative market benchmarks |
| 63 | + based on published industry data. They are informational only, vary by experience, |
| 64 | + specialization, location, employer and market conditions, and do not represent a guaranteed |
| 65 | + salary, job offer or employment outcome. |
| 66 | + </p> |
| 67 | + |
| 68 | + <h2>Professional and ethical boundaries</h2> |
| 69 | + <p> |
| 70 | + We provide preparation, guidance and technical support. We do not impersonate candidates, |
| 71 | + fabricate experience, create fake documents, or claim false employer affiliations. Customers |
| 72 | + remain responsible for their own applications, assessments, interviews and professional |
| 73 | + decisions. |
| 74 | + </p> |
| 75 | + |
| 76 | + <h2>External links and third parties</h2> |
| 77 | + <p> |
| 78 | + Company, product and technology names referenced on this site are the property of their |
| 79 | + respective owners and are used for identification and descriptive purposes only. Reference to |
| 80 | + them does not imply any affiliation with or endorsement by those parties. |
| 81 | + </p> |
| 82 | + |
| 83 | + <h2>Contact</h2> |
| 84 | + <p> |
| 85 | + Questions about this disclaimer can be sent to{' '} |
| 86 | + <a href="mailto:support@proxytechsupport.com">support@proxytechsupport.com</a>. |
| 87 | + </p> |
| 88 | + </LegalPageLayout> |
| 89 | + ); |
| 90 | +} |
0 commit comments