feat: product catalog
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🧪 QA (push) Failing after 2m20s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🧪 QA (push) Failing after 2m20s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
This commit is contained in:
@@ -11,10 +11,10 @@ import {
|
||||
// ─── Brand Colors ───────────────────────────────────────────────────────────
|
||||
|
||||
const C = {
|
||||
primary: '#001a4d',
|
||||
primaryDark: '#000d26',
|
||||
primary: '#001a4d', // Navy
|
||||
primaryDark: '#000d26', // Deepest Navy
|
||||
saturated: '#0117bf',
|
||||
accent: '#4da612',
|
||||
accent: '#4da612', // Green
|
||||
accentLight: '#e8f5d8',
|
||||
black: '#000000',
|
||||
white: '#FFFFFF',
|
||||
@@ -94,10 +94,21 @@ const L = (locale: 'en' | 'de') => locale === 'de' ? {
|
||||
qrWeb: 'Web', qrPdf: 'PDF', values: 'Our Values', edition: 'Edition', page: 'p.',
|
||||
};
|
||||
|
||||
// ─── Text tokens ────────────────────────────────────────────────────────────
|
||||
|
||||
const T = {
|
||||
label: (d: boolean) => ({ fontSize: 9, fontWeight: 700, color: C.accent, textTransform: 'uppercase' as 'uppercase', letterSpacing: 1.2 }),
|
||||
sectionTitle: (d: boolean) => ({ fontSize: 24, fontWeight: 700, color: d ? C.white : C.primaryDark, letterSpacing: -0.5 }),
|
||||
body: (d: boolean) => ({ fontSize: 10, color: d ? C.gray300 : C.gray600, lineHeight: 1.7 }),
|
||||
bodyLead: (d: boolean) => ({ fontSize: 13, color: d ? C.white : C.gray900, lineHeight: 1.8 }),
|
||||
bodyBold: (d: boolean) => ({ fontSize: 10, fontWeight: 700, color: d ? C.white : C.primaryDark }),
|
||||
caption: (d: boolean) => ({ fontSize: 8, color: d ? C.gray400 : C.gray400, textTransform: 'uppercase' as 'uppercase', letterSpacing: 1 }),
|
||||
};
|
||||
|
||||
// ─── Rich Text (supports **bold** and *italic*) ────────────────────────────
|
||||
|
||||
const RichText: React.FC<{ children: string; style?: any; paragraphGap?: number }> = ({ children, style = {}, paragraphGap = 8 }) => {
|
||||
const paragraphs = children.split('\n\n').filter(p => p.trim());
|
||||
const RichText: React.FC<{ children: string; style?: any; paragraphGap?: number; isDark?: boolean; asParagraphs?: boolean }> = ({ children, style = {}, paragraphGap = 8, isDark = false, asParagraphs = true }) => {
|
||||
const paragraphs = asParagraphs ? children.split('\n\n').filter(p => p.trim()) : [children];
|
||||
return (
|
||||
<View style={{ gap: paragraphGap }}>
|
||||
{paragraphs.map((para, pIdx) => {
|
||||
@@ -116,7 +127,7 @@ const RichText: React.FC<{ children: string; style?: any; paragraphGap?: number
|
||||
<Text key={pIdx} style={style}>
|
||||
{parts.map((part, i) => (
|
||||
<Text key={i} style={{
|
||||
...(part.bold ? { fontWeight: 700, fontFamily: 'Helvetica-Bold', color: C.primaryDark } : {}),
|
||||
...(part.bold ? { fontWeight: 700, fontFamily: 'Helvetica-Bold', color: isDark ? C.white : C.primaryDark } : {}),
|
||||
...(part.italic ? { fontWeight: 700, fontFamily: 'Helvetica-Bold', color: C.accent } : {}),
|
||||
}}>{part.text}</Text>
|
||||
))}
|
||||
@@ -127,105 +138,159 @@ const RichText: React.FC<{ children: string; style?: any; paragraphGap?: number
|
||||
);
|
||||
};
|
||||
|
||||
// ─── Text tokens ────────────────────────────────────────────────────────────
|
||||
|
||||
const T = {
|
||||
label: { fontSize: 9 as number, fontWeight: 700 as const, color: C.accent, textTransform: 'uppercase' as const, letterSpacing: 1.2 },
|
||||
sectionTitle: { fontSize: 16 as number, fontWeight: 700 as const, color: C.primaryDark, letterSpacing: -0.3 },
|
||||
body: { fontSize: 10 as number, color: C.gray600, lineHeight: 1.7 },
|
||||
bodyLead: { fontSize: 11 as number, color: C.gray900, lineHeight: 1.8 },
|
||||
bodyBold: { fontSize: 10 as number, fontWeight: 700 as const, color: C.primaryDark },
|
||||
caption: { fontSize: 8 as number, color: C.gray400, textTransform: 'uppercase' as const, letterSpacing: 1 },
|
||||
};
|
||||
|
||||
// ─── Reusable Components ────────────────────────────────────────────────────
|
||||
|
||||
const FixedHeader: React.FC<{ logoBlack?: string | Buffer; rightText?: string }> = ({ logoBlack, rightText }) => (
|
||||
<View style={{
|
||||
position: 'absolute', top: 0, left: 0, right: 0, height: HEADER_H,
|
||||
paddingHorizontal: M.h, paddingTop: 24, paddingBottom: 16,
|
||||
flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center',
|
||||
borderBottomWidth: 0.5, borderBottomColor: C.gray300, borderBottomStyle: 'solid',
|
||||
backgroundColor: C.white,
|
||||
}} fixed>
|
||||
{logoBlack ? <Image src={logoBlack} style={{ width: 64 }} /> : <Text style={{ fontSize: 16, fontWeight: 700, color: C.primaryDark }}>KLZ</Text>}
|
||||
{rightText && <Text style={{ fontSize: 8, fontWeight: 700, color: C.primary, letterSpacing: 0.8, textTransform: 'uppercase' }}>{rightText}</Text>}
|
||||
</View>
|
||||
);
|
||||
|
||||
const Footer: React.FC<{ left: string; right: string; logoBlack?: string | Buffer }> = ({ left, right, logoBlack }) => (
|
||||
<View style={{
|
||||
position: 'absolute', bottom: 40, left: M.h, right: M.h,
|
||||
flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center',
|
||||
paddingTop: 12,
|
||||
borderTopWidth: 0.5, borderTopColor: C.gray300, borderTopStyle: 'solid',
|
||||
}} fixed>
|
||||
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 8 }}>
|
||||
{logoBlack && <Image src={logoBlack} style={{ width: 40, height: 'auto' }} />}
|
||||
<Text style={T.caption}>{left}</Text>
|
||||
const FixedHeader: React.FC<{ logoWhite?: string | Buffer; logoBlack?: string | Buffer; rightText?: string; isDark?: boolean }> = ({ logoWhite, logoBlack, rightText, isDark }) => {
|
||||
const logo = isDark ? (logoWhite || logoBlack) : logoBlack;
|
||||
return (
|
||||
<View style={{
|
||||
position: 'absolute', top: 0, left: 0, right: 0, height: HEADER_H,
|
||||
paddingHorizontal: M.h, paddingTop: 24, paddingBottom: 16,
|
||||
flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center',
|
||||
borderBottomWidth: 0.5, borderBottomColor: isDark ? 'rgba(255,255,255,0.1)' : C.gray300, borderBottomStyle: 'solid',
|
||||
backgroundColor: isDark ? C.primaryDark : C.white,
|
||||
}} fixed>
|
||||
{logo ? <Image src={logo} style={{ width: 64 }} /> : <Text style={{ fontSize: 16, fontWeight: 700, color: isDark ? C.white : C.primaryDark }}>KLZ</Text>}
|
||||
{rightText && <Text style={{ fontSize: 8, fontWeight: 700, color: isDark ? C.white : C.primary, letterSpacing: 0.8, textTransform: 'uppercase' }}>{rightText}</Text>}
|
||||
</View>
|
||||
<Text style={T.caption}>{right}</Text>
|
||||
</View>
|
||||
);
|
||||
);
|
||||
};
|
||||
|
||||
const SectionHeading: React.FC<{ label?: string; title: string }> = ({ label, title }) => (
|
||||
<View style={{ marginBottom: S.md }} minPresenceAhead={120}>
|
||||
{label && <Text style={{ ...T.label, marginBottom: S.sm }}>{label}</Text>}
|
||||
<Text style={{ ...T.sectionTitle, marginBottom: S.sm }}>{title}</Text>
|
||||
<View style={{ width: 32, height: 3, backgroundColor: C.accent, borderRadius: 1.5 }} />
|
||||
const Footer: React.FC<{ left: string; right: string; logoWhite?: string | Buffer; logoBlack?: string | Buffer; isDark?: boolean }> = ({ left, right, logoWhite, logoBlack, isDark }) => {
|
||||
const logo = isDark ? (logoWhite || logoBlack) : logoBlack;
|
||||
return (
|
||||
<View style={{
|
||||
position: 'absolute', bottom: 40, left: M.h, right: M.h,
|
||||
flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center',
|
||||
paddingTop: 12,
|
||||
borderTopWidth: 0.5, borderTopColor: isDark ? 'rgba(255,255,255,0.1)' : C.gray300, borderTopStyle: 'solid',
|
||||
}} fixed>
|
||||
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 8 }}>
|
||||
{logo && <Image src={logo} style={{ width: 40, height: 'auto' }} />}
|
||||
<Text style={T.caption(!!isDark)}>{left}</Text>
|
||||
</View>
|
||||
<Text style={T.caption(!!isDark)}>{right}</Text>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
const SectionHeading: React.FC<{ label?: string; title: string, isDark: boolean }> = ({ label, title, isDark }) => (
|
||||
<View style={{ marginBottom: S.lg }} minPresenceAhead={120}>
|
||||
{label && <Text style={{ ...T.label(isDark), marginBottom: S.sm }}>{label}</Text>}
|
||||
<Text style={{ ...T.sectionTitle(isDark), marginBottom: S.md }}>{title}</Text>
|
||||
<View style={{ width: 48, height: 4, backgroundColor: C.accent }} />
|
||||
</View>
|
||||
);
|
||||
|
||||
// Pull-quote callout block
|
||||
const PullQuote: React.FC<{ quote: string }> = ({ quote }) => (
|
||||
const PullQuote: React.FC<{ quote: string, isDark: boolean }> = ({ quote, isDark }) => (
|
||||
<View style={{
|
||||
borderLeftWidth: 3, borderLeftColor: C.accent, borderLeftStyle: 'solid',
|
||||
paddingLeft: S.md, paddingVertical: S.sm,
|
||||
marginVertical: S.md,
|
||||
marginVertical: S.xl,
|
||||
paddingLeft: S.lg,
|
||||
borderLeftWidth: 4, borderLeftColor: C.accent, borderLeftStyle: 'solid',
|
||||
}}>
|
||||
<Text style={{ fontSize: 12, fontWeight: 700, color: C.primaryDark, lineHeight: 1.6 }}>
|
||||
<Text style={{ fontSize: 16, fontWeight: 700, color: isDark ? C.white : C.primaryDark, lineHeight: 1.5, letterSpacing: -0.2 }}>
|
||||
„{quote}"
|
||||
</Text>
|
||||
</View>
|
||||
);
|
||||
|
||||
// Stat highlight boxes
|
||||
const HighlightRow: React.FC<{ highlights: Array<{ value: string; label: string }> }> = ({ highlights }) => (
|
||||
<View style={{ flexDirection: 'row', gap: S.md, marginVertical: S.md }}>
|
||||
const HighlightRow: React.FC<{ highlights: Array<{ value: string; label: string }>, isDark: boolean }> = ({ highlights, isDark }) => (
|
||||
<View style={{ flexDirection: 'row', gap: S.md, marginVertical: S.lg }}>
|
||||
{highlights.map((h, i) => (
|
||||
<View key={i} style={{
|
||||
flex: 1,
|
||||
backgroundColor: C.gray050,
|
||||
borderWidth: 0.5, borderColor: C.gray200, borderStyle: 'solid',
|
||||
borderRadius: 4,
|
||||
paddingVertical: S.sm, paddingHorizontal: S.md,
|
||||
alignItems: 'center',
|
||||
backgroundColor: isDark ? 'rgba(255,255,255,0.03)' : C.gray050,
|
||||
borderLeftWidth: 3, borderLeftColor: C.accent, borderLeftStyle: 'solid',
|
||||
paddingVertical: S.md, paddingHorizontal: S.md,
|
||||
alignItems: 'flex-start',
|
||||
}}>
|
||||
<Text style={{ fontSize: 12, fontWeight: 700, color: C.accent, marginBottom: 2 }}>{h.value}</Text>
|
||||
<Text style={{ fontSize: 8, color: C.gray600, textAlign: 'center' }}>{h.label}</Text>
|
||||
<Text style={{ fontSize: 18, fontWeight: 700, color: isDark ? C.white : C.primaryDark, marginBottom: 4 }}>{h.value}</Text>
|
||||
<Text style={{ fontSize: 9, color: isDark ? C.gray400 : C.gray600, textTransform: 'uppercase', letterSpacing: 0.5 }}>{h.label}</Text>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
);
|
||||
|
||||
// Inline image strip between sections
|
||||
const SectionImage: React.FC<{ src: string | Buffer; height?: number }> = ({ src, height = 100 }) => {
|
||||
// Skip empty buffers
|
||||
// Magazine Edge-to-Edge Image
|
||||
// By using negative horizontal margin (-M.h) matching the parent padding, it touches the very edges.
|
||||
// By using negative vertical margin matching the vertical padding, it touches the top or bottom of the colored block!
|
||||
const MagazineImage: React.FC<{ src: string | Buffer; height?: number; position: 'top' | 'bottom' | 'middle'; isDark?: boolean }> = ({ src, height = 260, position, isDark }) => {
|
||||
if (Buffer.isBuffer(src) && src.length === 0) return null;
|
||||
|
||||
const marginTop = position === 'top' ? -S.xxl : (position === 'middle' ? S.xl : S.xxl);
|
||||
const marginBottom = position === 'bottom' ? -S.xxl : (position === 'middle' ? S.xl : S.xxl);
|
||||
|
||||
return (
|
||||
<View style={{
|
||||
width: '100%', height, borderRadius: 4, overflow: 'hidden',
|
||||
marginVertical: S.md,
|
||||
marginHorizontal: -M.h,
|
||||
height,
|
||||
marginTop,
|
||||
marginBottom,
|
||||
position: 'relative'
|
||||
}}>
|
||||
<Image src={src} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />
|
||||
{isDark && (
|
||||
<View style={{ position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, backgroundColor: C.primaryDark, opacity: 0.2 }} />
|
||||
)}
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
// Horizontal divider
|
||||
const Divider: React.FC = () => (
|
||||
<View style={{ borderTopWidth: 0.5, borderTopColor: C.gray200, borderTopStyle: 'solid', marginVertical: S.lg }} />
|
||||
);
|
||||
// Magazine Block wrapper
|
||||
const MagazineSection: React.FC<{
|
||||
section: NonNullable<BrochureProps['marketingSections']>[0];
|
||||
image?: string | Buffer;
|
||||
theme: 'white' | 'gray' | 'dark';
|
||||
imagePosition: 'top' | 'bottom' | 'middle';
|
||||
}> = ({ section, image, theme, imagePosition }) => {
|
||||
const isDark = theme === 'dark';
|
||||
const bgColor = theme === 'white' ? C.white : (theme === 'gray' ? C.gray050 : C.primaryDark);
|
||||
|
||||
return (
|
||||
<View style={{
|
||||
marginHorizontal: -M.h,
|
||||
paddingHorizontal: M.h,
|
||||
paddingVertical: S.xxl,
|
||||
backgroundColor: bgColor,
|
||||
}} wrap={true}>
|
||||
{image && imagePosition === 'top' && <MagazineImage src={image} height={280} position="top" isDark={isDark} />}
|
||||
|
||||
<SectionHeading label={section.subtitle} title={section.title} isDark={isDark} />
|
||||
|
||||
{section.description && (
|
||||
<RichText style={T.bodyLead(isDark)} paragraphGap={S.md} isDark={isDark}>
|
||||
{section.description}
|
||||
</RichText>
|
||||
)}
|
||||
|
||||
{image && imagePosition === 'middle' && <MagazineImage src={image} height={220} position="middle" isDark={isDark} />}
|
||||
|
||||
{section.highlights && section.highlights.length > 0 && (
|
||||
<HighlightRow highlights={section.highlights} isDark={isDark} />
|
||||
)}
|
||||
|
||||
{section.pullQuote && <PullQuote quote={section.pullQuote} isDark={isDark} />}
|
||||
|
||||
{section.items && section.items.length > 0 && (
|
||||
<View style={{ flexDirection: 'row', flexWrap: 'wrap', gap: S.xl, marginTop: S.xl }}>
|
||||
{section.items.map((item, i) => (
|
||||
<View key={i} style={{ width: '45%', marginBottom: S.sm }} minPresenceAhead={60}>
|
||||
<View style={{ width: 24, height: 2, backgroundColor: C.accent, marginBottom: S.sm }} />
|
||||
<Text style={{ ...T.bodyBold(isDark), fontSize: 11, marginBottom: 4 }}>{item.title}</Text>
|
||||
<RichText style={{ ...T.body(isDark) }} asParagraphs={false} isDark={isDark}>
|
||||
{item.description}
|
||||
</RichText>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
)}
|
||||
|
||||
{image && imagePosition === 'bottom' && <MagazineImage src={image} height={320} position="bottom" isDark={isDark} />}
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
// ─── Cover Page ─────────────────────────────────────────────────────────────
|
||||
|
||||
@@ -233,145 +298,121 @@ const CoverPage: React.FC<{
|
||||
locale: 'en' | 'de';
|
||||
introContent?: BrochureProps['introContent'];
|
||||
logoBlack?: string | Buffer;
|
||||
logoWhite?: string | Buffer;
|
||||
galleryImages?: Array<string | Buffer>;
|
||||
}> = ({ locale, introContent, logoBlack, galleryImages }) => {
|
||||
}> = ({ locale, introContent, logoWhite, logoBlack, galleryImages }) => {
|
||||
const l = L(locale);
|
||||
const dateStr = new Date().toLocaleDateString(locale === 'en' ? 'en-US' : 'de-DE', { year: 'numeric', month: 'long' });
|
||||
const bgImage = galleryImages?.[0] || introContent?.heroImage;
|
||||
const logo = logoWhite || logoBlack;
|
||||
|
||||
return (
|
||||
<Page size="A4" style={{ backgroundColor: C.white, fontFamily: 'Helvetica' }}>
|
||||
<Page size="A4" style={{ backgroundColor: C.primaryDark, fontFamily: 'Helvetica' }}>
|
||||
{bgImage && (
|
||||
<View style={{ position: 'absolute', top: 0, left: 0, right: 0, bottom: 0 }}>
|
||||
<Image src={bgImage} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />
|
||||
<View style={{ position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, backgroundColor: C.white, opacity: 0.82 }} />
|
||||
<View style={{ position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, backgroundColor: C.primaryDark, opacity: 0.85 }} />
|
||||
</View>
|
||||
)}
|
||||
<View style={{ position: 'absolute', top: 0, left: 0, width: 4, height: 280, backgroundColor: C.accent }} />
|
||||
<View style={{ position: 'absolute', top: 0, left: 0, width: 6, height: 320, backgroundColor: C.accent }} />
|
||||
|
||||
<View style={{ flex: 1, paddingHorizontal: M.h }}>
|
||||
<View style={{ marginTop: 80 }}>
|
||||
{logoBlack ? <Image src={logoBlack} style={{ width: 140 }} /> : <Text style={{ fontSize: 28, fontWeight: 700, color: C.black }}>KLZ</Text>}
|
||||
{logo ? <Image src={logo} style={{ width: 140 }} /> : <Text style={{ fontSize: 28, fontWeight: 700, color: C.white }}>KLZ</Text>}
|
||||
</View>
|
||||
|
||||
<View style={{ marginTop: 160 }}>
|
||||
<View style={{ width: 48, height: 4, backgroundColor: C.accent, borderRadius: 2, marginBottom: S.lg }} />
|
||||
<Text style={{ fontSize: 42, fontWeight: 700, color: C.black, textTransform: 'uppercase', letterSpacing: 0.5, lineHeight: 1.1, marginBottom: S.md }}>
|
||||
<View style={{ marginTop: 180 }}>
|
||||
<View style={{ width: 48, height: 4, backgroundColor: C.accent, borderRadius: 2, marginBottom: S.xl }} />
|
||||
<Text style={{ fontSize: 48, fontWeight: 700, color: C.white, textTransform: 'uppercase', letterSpacing: 0.5, lineHeight: 1.1, marginBottom: S.md }}>
|
||||
{l.catalog}
|
||||
</Text>
|
||||
<Text style={{ fontSize: 14, color: C.gray600, lineHeight: 1.6, maxWidth: 360 }}>
|
||||
<Text style={{ fontSize: 16, color: C.gray300, lineHeight: 1.6, maxWidth: 360 }}>
|
||||
{introContent?.excerpt || l.subtitle}
|
||||
</Text>
|
||||
</View>
|
||||
|
||||
<View style={{ position: 'absolute', bottom: S.xxl, left: M.h, right: M.h, flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center' }}>
|
||||
<Text style={T.caption}>{l.edition} {dateStr}</Text>
|
||||
<Text style={T.caption}>www.klz-cables.com</Text>
|
||||
<Text style={{ fontSize: 10, color: C.gray400, textTransform: 'uppercase', letterSpacing: 1 }}>{l.edition} {dateStr}</Text>
|
||||
<Text style={{ fontSize: 10, color: C.white, fontWeight: 700 }}>www.klz-cables.com</Text>
|
||||
</View>
|
||||
</View>
|
||||
</Page>
|
||||
);
|
||||
};
|
||||
|
||||
// ─── Info Flow (NO repeated background image — uses inline images) ──────────
|
||||
// ─── Info Flow ──────────────────────────────────────────────────────────────
|
||||
|
||||
const InfoFlow: React.FC<{
|
||||
locale: 'en' | 'de';
|
||||
companyInfo: BrochureProps['companyInfo'];
|
||||
introContent?: BrochureProps['introContent'];
|
||||
marketingSections?: BrochureProps['marketingSections'];
|
||||
logoBlack?: string | Buffer;
|
||||
galleryImages?: Array<string | Buffer>;
|
||||
}> = ({ locale, companyInfo, introContent, marketingSections, logoBlack, galleryImages }) => {
|
||||
}> = ({ locale, companyInfo, marketingSections, logoBlack, galleryImages }) => {
|
||||
const l = L(locale);
|
||||
|
||||
return (
|
||||
<Page size="A4" wrap style={{ backgroundColor: C.white, fontFamily: 'Helvetica', paddingTop: PAGE_TOP_PADDING, paddingBottom: M.bottom }}>
|
||||
<FixedHeader logoBlack={logoBlack} rightText="KLZ Cables" />
|
||||
<Footer left="KLZ Cables" right={companyInfo.website} logoBlack={logoBlack} />
|
||||
<FixedHeader logoBlack={logoBlack} rightText="KLZ Cables" isDark={false} />
|
||||
<Footer left="KLZ Cables" right={companyInfo.website} logoBlack={logoBlack} isDark={false} />
|
||||
|
||||
<View style={{ paddingHorizontal: M.h }}>
|
||||
|
||||
{/* ── About KLZ ── */}
|
||||
<View style={{ marginBottom: S.xl }}>
|
||||
<SectionHeading label={l.about} title="KLZ Cables" />
|
||||
|
||||
<RichText style={{ ...T.bodyLead, marginBottom: S.md }}>
|
||||
{companyInfo.tagline}
|
||||
</RichText>
|
||||
|
||||
{/* Inline image strip */}
|
||||
{galleryImages?.[1] && <SectionImage src={galleryImages[1]} height={90} />}
|
||||
|
||||
{/* Values in 2-col grid */}
|
||||
<Text style={{ ...T.label, marginBottom: S.sm }}>{l.values}</Text>
|
||||
<View style={{ flexDirection: 'row', flexWrap: 'wrap', gap: S.sm }}>
|
||||
{companyInfo.values.map((v, i) => (
|
||||
<View key={i} style={{ width: '48%', marginBottom: S.xs, flexDirection: 'row', alignItems: 'flex-start', gap: S.sm }} minPresenceAhead={40}>
|
||||
<View style={{
|
||||
width: 20, height: 20, borderRadius: 10,
|
||||
backgroundColor: C.accent,
|
||||
justifyContent: 'center', alignItems: 'center', flexShrink: 0, marginTop: 2,
|
||||
}}>
|
||||
<Text style={{ fontSize: 9, fontWeight: 700, color: C.white, textAlign: 'center' }}>0{i + 1}</Text>
|
||||
<View style={{
|
||||
marginHorizontal: -M.h, paddingHorizontal: M.h,
|
||||
paddingTop: S.xxl, paddingBottom: S.xl,
|
||||
backgroundColor: C.white,
|
||||
}}>
|
||||
<View style={{ flexDirection: 'row', gap: S.xl }}>
|
||||
<View style={{ flex: 1.5 }}>
|
||||
<SectionHeading label={l.about} title="KLZ Cables" isDark={false} />
|
||||
<RichText style={{ ...T.bodyLead(false), fontSize: 14, lineHeight: 1.6 }} paragraphGap={S.md} isDark={false}>
|
||||
{companyInfo.tagline}
|
||||
</RichText>
|
||||
</View>
|
||||
<View style={{ flex: 1 }}>
|
||||
{galleryImages?.[1] && (
|
||||
<View style={{ width: '100%', height: 240, borderLeftWidth: 4, borderLeftColor: C.accent, borderLeftStyle: 'solid' }}>
|
||||
<Image src={galleryImages[1]} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />
|
||||
</View>
|
||||
<View style={{ flex: 1 }}>
|
||||
<Text style={{ ...T.bodyBold, marginBottom: 1 }}>{v.title}</Text>
|
||||
<Text style={{ ...T.body, fontSize: 9 }}>{v.description}</Text>
|
||||
)}
|
||||
</View>
|
||||
</View>
|
||||
|
||||
<View style={{ marginTop: S.xxl }}>
|
||||
<Text style={{ ...T.label(false), marginBottom: S.md }}>{l.values}</Text>
|
||||
<View style={{ flexDirection: 'row', flexWrap: 'wrap', gap: S.lg }}>
|
||||
{companyInfo.values.map((v, i) => (
|
||||
<View key={i} style={{ width: '47%', marginBottom: S.md }} minPresenceAhead={40}>
|
||||
<Text style={{ ...T.bodyBold(false), fontSize: 11, marginBottom: 4 }}>
|
||||
<Text style={{ color: C.accent }}>0{i + 1}</Text> {'\u00A0'} {v.title}
|
||||
</Text>
|
||||
<Text style={{ ...T.body(false), fontSize: 9 }}>{v.description}</Text>
|
||||
</View>
|
||||
</View>
|
||||
))}
|
||||
))}
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
<Divider />
|
||||
|
||||
{/* ── Marketing Sections ── */}
|
||||
{marketingSections?.map((section, sIdx) => (
|
||||
<View key={`m-${sIdx}`} style={{ marginBottom: S.xl }} minPresenceAhead={200}>
|
||||
<SectionHeading label={section.subtitle} title={section.title} />
|
||||
{marketingSections?.map((section, sIdx) => {
|
||||
const themes: Array<'white' | 'gray' | 'dark'> = ['gray', 'dark', 'white', 'gray', 'white', 'dark'];
|
||||
const imagePositions: Array<'top' | 'bottom' | 'middle'> = ['bottom', 'top', 'bottom', 'middle', 'middle', 'top'];
|
||||
const theme = themes[sIdx % themes.length];
|
||||
const pos = imagePositions[sIdx % imagePositions.length];
|
||||
const img = galleryImages?.[sIdx + 2];
|
||||
|
||||
{/* Description */}
|
||||
{section.description && (
|
||||
<RichText style={{ ...T.bodyLead }} paragraphGap={S.sm}>
|
||||
{section.description}
|
||||
</RichText>
|
||||
)}
|
||||
|
||||
{/* Pull quote */}
|
||||
{section.pullQuote && <PullQuote quote={section.pullQuote} />}
|
||||
|
||||
{/* Stat highlights */}
|
||||
{section.highlights && section.highlights.length > 0 && (
|
||||
<HighlightRow highlights={section.highlights} />
|
||||
)}
|
||||
|
||||
{/* Inline image for visual break (different image per section) */}
|
||||
{galleryImages && galleryImages[sIdx + 2] && sIdx < 3 && (
|
||||
<SectionImage src={galleryImages[sIdx + 2]} height={80} />
|
||||
)}
|
||||
|
||||
{/* Item list */}
|
||||
{section.items && (
|
||||
<View style={{ flexDirection: 'column', gap: S.md, marginTop: S.sm }}>
|
||||
{section.items.map((item, i) => (
|
||||
<View key={i} style={{ flexDirection: 'row', alignItems: 'flex-start', gap: S.sm }} minPresenceAhead={60}>
|
||||
<View style={{ flexShrink: 0, marginTop: 5 }}>
|
||||
<View style={{ width: 5, height: 5, borderRadius: 2.5, backgroundColor: C.accent }} />
|
||||
</View>
|
||||
<View style={{ flex: 1 }}>
|
||||
<Text style={{ ...T.bodyBold, marginBottom: 2 }}>{item.title}</Text>
|
||||
<Text style={{ ...T.body }}>{item.description}</Text>
|
||||
</View>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
)}
|
||||
|
||||
{/* Divider between sections */}
|
||||
{sIdx < (marketingSections?.length || 0) - 1 && <Divider />}
|
||||
</View>
|
||||
))}
|
||||
return (
|
||||
<MagazineSection
|
||||
key={`m-${sIdx}`}
|
||||
section={section}
|
||||
image={img}
|
||||
theme={theme}
|
||||
imagePosition={pos}
|
||||
/>
|
||||
);
|
||||
})}
|
||||
</View>
|
||||
</Page>
|
||||
);
|
||||
@@ -403,26 +444,30 @@ const TocPage: React.FC<{
|
||||
<Footer left="KLZ Cables" right="www.klz-cables.com" logoBlack={logoBlack} />
|
||||
|
||||
<View style={{ paddingHorizontal: M.h }}>
|
||||
<SectionHeading label={l.catalog} title={l.toc} />
|
||||
<SectionHeading label={l.catalog} title={l.toc} isDark={false} />
|
||||
|
||||
{/* Optional decorative image */}
|
||||
{galleryImages?.[5] && <SectionImage src={galleryImages[5]} height={70} />}
|
||||
{/* Decorative image edge-to-edge */}
|
||||
{galleryImages?.[5] && (
|
||||
<View style={{ marginHorizontal: -M.h, height: 160, marginBottom: S.xxl }}>
|
||||
<Image src={galleryImages[5]} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />
|
||||
</View>
|
||||
)}
|
||||
|
||||
<View style={{ flexDirection: 'column' }}>
|
||||
{Array.from(grouped.entries()).map(([cat, items]) => (
|
||||
<View key={cat} style={{ width: '100%', marginBottom: S.md }}>
|
||||
<View style={{ borderBottomWidth: 1, borderBottomColor: C.accent, borderBottomStyle: 'solid', paddingBottom: S.xs, marginBottom: S.sm }}>
|
||||
<Text style={{ ...T.label }}>{cat}</Text>
|
||||
<View style={{ borderBottomWidth: 1.5, borderBottomColor: C.primaryDark, borderBottomStyle: 'solid', paddingBottom: S.xs, marginBottom: S.sm }}>
|
||||
<Text style={{ ...T.label(false) }}>{cat}</Text>
|
||||
</View>
|
||||
{items.map((item, i) => (
|
||||
<View key={i} style={{
|
||||
flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between',
|
||||
paddingVertical: 3,
|
||||
paddingVertical: 5,
|
||||
borderBottomWidth: i < items.length - 1 ? 0.5 : 0,
|
||||
borderBottomColor: C.gray200, borderBottomStyle: 'solid',
|
||||
}}>
|
||||
<Text style={{ fontSize: 10, fontWeight: 700, color: C.primaryDark }}>{item.product.name}</Text>
|
||||
<Text style={{ fontSize: 9, color: C.gray400 }}>{l.page} {item.pageNum}</Text>
|
||||
<Text style={{ fontSize: 11, fontWeight: 700, color: C.primaryDark }}>{item.product.name}</Text>
|
||||
<Text style={{ fontSize: 10, color: C.gray400 }}>{l.page} {item.pageNum}</Text>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
@@ -441,56 +486,64 @@ const ProductBlock: React.FC<{
|
||||
}> = ({ product, locale }) => {
|
||||
const l = L(locale);
|
||||
const desc = stripHtml(product.applicationHtml || product.shortDescriptionHtml || product.descriptionHtml);
|
||||
const LABEL_WIDTH = 260; // Wider label container for technical data
|
||||
|
||||
return (
|
||||
<View>
|
||||
<SectionHeading
|
||||
label={product.categories.map(c => c.name).join(' · ')}
|
||||
title={product.name}
|
||||
isDark={false}
|
||||
/>
|
||||
|
||||
{/* Full-width product image */}
|
||||
{/* Edge-to-edge product image */}
|
||||
<View style={{
|
||||
width: '100%', height: 120, justifyContent: 'center', alignItems: 'center',
|
||||
borderRadius: 4, backgroundColor: C.gray050,
|
||||
borderWidth: 0.5, borderColor: C.gray200, borderStyle: 'solid',
|
||||
overflow: 'hidden', padding: S.sm, marginBottom: S.lg,
|
||||
marginHorizontal: -M.h,
|
||||
height: 200, justifyContent: 'center', alignItems: 'center',
|
||||
backgroundColor: C.gray050,
|
||||
borderTopWidth: 0.5, borderTopColor: C.gray200, borderTopStyle: 'solid',
|
||||
borderBottomWidth: 0.5, borderBottomColor: C.gray200, borderBottomStyle: 'solid',
|
||||
marginBottom: S.xl, padding: S.lg
|
||||
}}>
|
||||
{product.featuredImage ? (
|
||||
<Image src={product.featuredImage} style={{ width: '100%', height: '100%', objectFit: 'contain' }} />
|
||||
) : (
|
||||
<Text style={{ fontSize: 8, color: C.gray400 }}>—</Text>
|
||||
<Text style={{ fontSize: 10, color: C.gray400 }}>—</Text>
|
||||
)}
|
||||
</View>
|
||||
|
||||
{/* Description + QR */}
|
||||
<View style={{ flexDirection: 'row', gap: S.xl, marginBottom: S.lg }}>
|
||||
<View style={{ flex: 1.6 }}>
|
||||
<View style={{ flexDirection: 'row', gap: S.xl, marginBottom: S.xl }}>
|
||||
<View style={{ flex: 1.8 }}>
|
||||
{desc && (
|
||||
<View>
|
||||
<Text style={{ ...T.label, marginBottom: S.sm }}>{l.application}</Text>
|
||||
<RichText style={{ ...T.body, lineHeight: 1.8 }}>{desc}</RichText>
|
||||
<Text style={{ ...T.label(false), marginBottom: S.md }}>{l.application}</Text>
|
||||
<RichText style={{ ...T.body(false), lineHeight: 1.8 }}>{desc}</RichText>
|
||||
</View>
|
||||
)}
|
||||
</View>
|
||||
<View style={{ flex: 1, flexDirection: 'column', justifyContent: 'flex-start' }}>
|
||||
{(product.qrWebsite || product.qrDatasheet) && (
|
||||
<View style={{ flexDirection: 'column', gap: S.sm }}>
|
||||
<View style={{ flexDirection: 'column', gap: S.md }}>
|
||||
{product.qrWebsite && (
|
||||
<View style={{ flexDirection: 'row', alignItems: 'center', gap: S.sm }}>
|
||||
<Image src={product.qrWebsite} style={{ width: 32, height: 32 }} />
|
||||
<View style={{ flexDirection: 'row', alignItems: 'center', gap: S.md }}>
|
||||
<View style={{ padding: 4, borderWidth: 1, borderColor: C.gray200, borderStyle: 'solid' }}>
|
||||
<Image src={product.qrWebsite} style={{ width: 44, height: 44 }} />
|
||||
</View>
|
||||
<View>
|
||||
<Text style={{ ...T.caption, fontWeight: 700, color: C.primaryDark, marginBottom: 1 }}>{l.qrWeb}</Text>
|
||||
<Text style={{ fontSize: 7, color: C.gray400 }}>{locale === 'de' ? 'Produktseite' : 'Product Page'}</Text>
|
||||
<Text style={{ ...T.caption(false), fontWeight: 700, color: C.primaryDark, marginBottom: 2 }}>{l.qrWeb}</Text>
|
||||
<Text style={{ fontSize: 8, color: C.gray400 }}>{locale === 'de' ? 'Produktseite' : 'Product Page'}</Text>
|
||||
</View>
|
||||
</View>
|
||||
)}
|
||||
{product.qrDatasheet && (
|
||||
<View style={{ flexDirection: 'row', alignItems: 'center', gap: S.sm }}>
|
||||
<Image src={product.qrDatasheet} style={{ width: 32, height: 32 }} />
|
||||
<View style={{ flexDirection: 'row', alignItems: 'center', gap: S.md }}>
|
||||
<View style={{ padding: 4, borderWidth: 1, borderColor: C.gray200, borderStyle: 'solid' }}>
|
||||
<Image src={product.qrDatasheet} style={{ width: 44, height: 44 }} />
|
||||
</View>
|
||||
<View>
|
||||
<Text style={{ ...T.caption, fontWeight: 700, color: C.primaryDark, marginBottom: 1 }}>{l.qrPdf}</Text>
|
||||
<Text style={{ fontSize: 7, color: C.gray400 }}>{locale === 'de' ? 'Datenblatt' : 'Datasheet'}</Text>
|
||||
<Text style={{ ...T.caption(false), fontWeight: 700, color: C.primaryDark, marginBottom: 2 }}>{l.qrPdf}</Text>
|
||||
<Text style={{ fontSize: 8, color: C.gray400 }}>{locale === 'de' ? 'Datenblatt' : 'Datasheet'}</Text>
|
||||
</View>
|
||||
</View>
|
||||
)}
|
||||
@@ -499,55 +552,48 @@ const ProductBlock: React.FC<{
|
||||
</View>
|
||||
</View>
|
||||
|
||||
{/* Technical Data Table — clean, minimal header */}
|
||||
{/* Technical Data Table — clean, minimal header, wider labels */}
|
||||
{product.attributes && product.attributes.length > 0 && (
|
||||
<View>
|
||||
<Text style={{ ...T.label, marginBottom: S.sm }}>{l.specs}</Text>
|
||||
<Text style={{ ...T.label(false), marginBottom: S.sm }}>{l.specs}</Text>
|
||||
|
||||
<View style={{
|
||||
borderWidth: 0.5, borderColor: C.gray200, borderStyle: 'solid',
|
||||
borderRadius: 4, overflow: 'hidden',
|
||||
flexDirection: 'row',
|
||||
borderBottomWidth: 1.5, borderBottomColor: C.primaryDark, borderBottomStyle: 'solid',
|
||||
paddingBottom: S.xs, marginBottom: 4,
|
||||
}}>
|
||||
{/* Subtle header */}
|
||||
<View style={{
|
||||
<View style={{ width: LABEL_WIDTH, paddingHorizontal: 10 }}>
|
||||
<Text style={{ ...T.label(false), fontSize: 7, color: C.gray600 }}>
|
||||
{locale === 'de' ? 'Eigenschaft' : 'Property'}
|
||||
</Text>
|
||||
</View>
|
||||
<View style={{ flex: 1, paddingHorizontal: 10 }}>
|
||||
<Text style={{ ...T.label(false), fontSize: 7, color: C.gray600 }}>
|
||||
{locale === 'de' ? 'Wert' : 'Value'}
|
||||
</Text>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
{/* Rows */}
|
||||
{product.attributes.map((attr, i) => (
|
||||
<View key={i} style={{
|
||||
flexDirection: 'row',
|
||||
backgroundColor: C.gray050,
|
||||
borderBottomWidth: 1, borderBottomColor: C.accent, borderBottomStyle: 'solid',
|
||||
borderBottomWidth: i < product.attributes.length - 1 ? 0.5 : 0,
|
||||
borderBottomColor: C.gray200, borderBottomStyle: 'solid',
|
||||
backgroundColor: i % 2 === 0 ? C.white : C.gray050,
|
||||
paddingVertical: 6,
|
||||
}}>
|
||||
<View style={{
|
||||
width: 200, paddingVertical: S.xs, paddingHorizontal: 10,
|
||||
borderRightWidth: 0.5, borderRightColor: C.gray200, borderRightStyle: 'solid'
|
||||
width: LABEL_WIDTH, paddingHorizontal: 10,
|
||||
borderRightWidth: 1, borderRightColor: C.gray200, borderRightStyle: 'solid',
|
||||
}}>
|
||||
<Text style={{ ...T.label, fontSize: 7, color: C.gray600 }}>
|
||||
{locale === 'de' ? 'Eigenschaft' : 'Property'}
|
||||
</Text>
|
||||
<Text style={{ fontSize: 9, fontWeight: 700, color: C.primaryDark, letterSpacing: 0.2 }}>{attr.name}</Text>
|
||||
</View>
|
||||
<View style={{ flex: 1, paddingVertical: S.xs, paddingHorizontal: 10 }}>
|
||||
<Text style={{ ...T.label, fontSize: 7, color: C.gray600 }}>
|
||||
{locale === 'de' ? 'Wert' : 'Value'}
|
||||
</Text>
|
||||
<View style={{ flex: 1, paddingHorizontal: 10, justifyContent: 'center' }}>
|
||||
<Text style={{ fontSize: 10, color: C.gray900 }}>{attr.options.join(', ')}</Text>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
{/* Rows */}
|
||||
{product.attributes.map((attr, i) => (
|
||||
<View key={i} style={{
|
||||
flexDirection: 'row',
|
||||
borderBottomWidth: i < product.attributes.length - 1 ? 0.5 : 0,
|
||||
borderBottomColor: C.gray200, borderBottomStyle: 'solid',
|
||||
backgroundColor: i % 2 === 0 ? C.white : C.gray050,
|
||||
}}>
|
||||
<View style={{
|
||||
width: 200, paddingVertical: S.xs, paddingHorizontal: 10,
|
||||
borderRightWidth: 0.5, borderRightColor: C.gray200, borderRightStyle: 'solid',
|
||||
}}>
|
||||
<Text style={{ fontSize: 8, fontWeight: 700, color: C.primaryDark, textTransform: 'uppercase', letterSpacing: 0.3 }}>{attr.name}</Text>
|
||||
</View>
|
||||
<View style={{ flex: 1, paddingVertical: S.xs, paddingHorizontal: 10, justifyContent: 'center' }}>
|
||||
<Text style={{ fontSize: 9, color: C.gray900 }}>{attr.options.join(', ')}</Text>
|
||||
</View>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
)}
|
||||
</View>
|
||||
@@ -582,38 +628,38 @@ const ProductsFlow: React.FC<{
|
||||
const BackCoverPage: React.FC<{
|
||||
companyInfo: BrochureProps['companyInfo'];
|
||||
locale: 'en' | 'de';
|
||||
logoBlack?: string | Buffer;
|
||||
logoWhite?: string | Buffer;
|
||||
galleryImages?: Array<string | Buffer>;
|
||||
}> = ({ companyInfo, locale, logoBlack, galleryImages }) => {
|
||||
}> = ({ companyInfo, locale, logoWhite, galleryImages }) => {
|
||||
const l = L(locale);
|
||||
const bgImage = galleryImages?.[6];
|
||||
|
||||
return (
|
||||
<Page size="A4" style={{ backgroundColor: C.white, fontFamily: 'Helvetica' }}>
|
||||
<Page size="A4" style={{ backgroundColor: C.primaryDark, fontFamily: 'Helvetica' }}>
|
||||
{bgImage && (
|
||||
<View style={{ position: 'absolute', top: 0, left: 0, right: 0, bottom: 0 }}>
|
||||
<Image src={bgImage} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />
|
||||
<View style={{ position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, backgroundColor: C.white, opacity: 0.9 }} />
|
||||
<View style={{ position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, backgroundColor: C.primaryDark, opacity: 0.9 }} />
|
||||
</View>
|
||||
)}
|
||||
|
||||
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center', padding: M.h }}>
|
||||
{logoBlack ? (
|
||||
<Image src={logoBlack} style={{ width: 180, marginBottom: S.xl }} />
|
||||
{logoWhite ? (
|
||||
<Image src={logoWhite} style={{ width: 180, marginBottom: S.xl }} />
|
||||
) : (
|
||||
<Text style={{ fontSize: 32, fontWeight: 700, color: C.black, letterSpacing: 2, textTransform: 'uppercase', marginBottom: S.xl }}>KLZ CABLES</Text>
|
||||
<Text style={{ fontSize: 32, fontWeight: 700, color: C.white, letterSpacing: 2, textTransform: 'uppercase', marginBottom: S.xl }}>KLZ CABLES</Text>
|
||||
)}
|
||||
|
||||
<View style={{ width: 48, height: 4, backgroundColor: C.accent, borderRadius: 2, marginBottom: S.xl }} />
|
||||
|
||||
<View style={{ alignItems: 'center', marginBottom: S.lg }}>
|
||||
<Text style={{ ...T.label, marginBottom: S.sm }}>{l.contact}</Text>
|
||||
<Text style={{ fontSize: 13, color: C.gray900, lineHeight: 1.7, textAlign: 'center' }}>{companyInfo.address}</Text>
|
||||
<Text style={{ ...T.label(true), marginBottom: S.sm }}>{l.contact}</Text>
|
||||
<Text style={{ fontSize: 13, color: C.white, lineHeight: 1.7, textAlign: 'center' }}>{companyInfo.address}</Text>
|
||||
</View>
|
||||
|
||||
<View style={{ alignItems: 'center', marginBottom: S.lg }}>
|
||||
<Text style={{ fontSize: 13, color: C.gray900 }}>{companyInfo.phone}</Text>
|
||||
<Text style={{ fontSize: 13, color: C.gray900 }}>{companyInfo.email}</Text>
|
||||
<Text style={{ fontSize: 13, color: C.white }}>{companyInfo.phone}</Text>
|
||||
<Text style={{ fontSize: 13, color: C.gray300 }}>{companyInfo.email}</Text>
|
||||
</View>
|
||||
|
||||
<Text style={{ fontSize: 14, fontWeight: 700, color: C.accent, marginTop: S.lg }}>{companyInfo.website}</Text>
|
||||
@@ -630,20 +676,17 @@ const BackCoverPage: React.FC<{
|
||||
|
||||
export const PDFBrochure: React.FC<BrochureProps> = ({
|
||||
products, locale, companyInfo, introContent,
|
||||
marketingSections, logoBlack, galleryImages,
|
||||
marketingSections, logoBlack, logoWhite, galleryImages,
|
||||
}) => {
|
||||
const productStartPage = 5;
|
||||
|
||||
return (
|
||||
<Document>
|
||||
<CoverPage locale={locale} introContent={introContent} logoBlack={logoBlack} galleryImages={galleryImages} />
|
||||
<InfoFlow locale={locale} companyInfo={companyInfo} introContent={introContent}
|
||||
marketingSections={marketingSections} logoBlack={logoBlack}
|
||||
galleryImages={galleryImages} />
|
||||
<TocPage products={products} locale={locale} logoBlack={logoBlack}
|
||||
productStartPage={productStartPage} galleryImages={galleryImages} />
|
||||
<CoverPage locale={locale} introContent={introContent} logoBlack={logoBlack} logoWhite={logoWhite} galleryImages={galleryImages} />
|
||||
<InfoFlow locale={locale} companyInfo={companyInfo} marketingSections={marketingSections} logoBlack={logoBlack} galleryImages={galleryImages} />
|
||||
<TocPage products={products} locale={locale} logoBlack={logoBlack} productStartPage={productStartPage} galleryImages={galleryImages} />
|
||||
<ProductsFlow products={products} locale={locale} logoBlack={logoBlack} />
|
||||
<BackCoverPage companyInfo={companyInfo} locale={locale} logoBlack={logoBlack} galleryImages={galleryImages} />
|
||||
<BackCoverPage companyInfo={companyInfo} locale={locale} logoWhite={logoWhite} galleryImages={galleryImages} />
|
||||
</Document>
|
||||
);
|
||||
};
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user