This commit is contained in:
Amruth Pillai
2026-01-24 23:00:54 +01:00
parent 1419c16d04
commit be84f0cca6
74 changed files with 2329 additions and 1035 deletions
+21
View File
@@ -0,0 +1,21 @@
export const pageDimensionsAsPixels = {
a4: {
width: 794,
height: 1123,
},
letter: {
width: 816,
height: 1056,
},
} as const;
export const pageDimensionsAsMillimeters = {
a4: {
width: "210mm",
height: "297mm",
},
letter: {
width: "216mm",
height: "279mm",
},
} as const;
File diff suppressed because one or more lines are too long