Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import com.demcha.compose.document.templates.cv.v2.data.SkillsSection;
import com.demcha.compose.document.templates.data.common.EmailYaml;
import com.demcha.compose.document.templates.data.common.Header;
import com.demcha.compose.document.templates.data.coverletter.CoverLetterDocumentSpec;
import com.demcha.compose.document.templates.data.invoice.InvoiceDocumentSpec;
import com.demcha.compose.document.templates.data.cv.CvDocumentSpec;
import com.demcha.compose.document.templates.data.proposal.ProposalDocumentSpec;
Expand Down Expand Up @@ -65,33 +64,6 @@ public static Header sampleHeader() {
.build();
}

public static String sampleCoverLetter() {
return """
Hiring team at ${companyName},

I am excited to share my interest in the Senior Platform Engineer role. My recent work has focused on building reusable document-generation systems that balance public API design, render quality, and maintainability.

I enjoy translating fuzzy workflow requirements into clear template abstractions, reliable test coverage, and examples that make adoption easier for the rest of the team.

I would welcome the opportunity to bring that same mix of engineering rigor and product thinking to your platform group.
""";
}

public static CoverLetterDocumentSpec sampleCoverLetterDocument() {
return CoverLetterDocumentSpec.builder()
.header(sampleHeader())
.letter(sampleCoverLetter())
.job(job -> job
.url("https://northwind.example/jobs/platform")
.title("Senior Platform Engineer")
.company("Northwind Systems")
.location("London / Remote")
.description("Lead reusable internal platform capabilities.")
.seniorityLevel("Senior")
.employmentType("Full-time"))
.build();
}

public static InvoiceDocumentSpec sampleInvoice() {
return InvoiceDocumentSpec.builder()
.title("Invoice")
Expand Down

This file was deleted.

This file was deleted.

Loading
Loading