Aimpress_site/src/components/blocks/BlockStats.css
Vadym Samoilenko 6cd63f1bdf Add Page Builder: 15 block types + publish/unpublish via TinaCMS
- New TinaCMS collection 'pages' with 15 block templates:
  Hero, TextBlock, TwoColumn, Features, Stats, Testimonials,
  Team, FAQ, CTABanner, Video, Gallery, Pricing, Timeline,
  Divider, ContactForm
- Each page has published toggle (unpublished → 404)
- Route /p/:slug renders dynamic pages from content/pages/*.json
- scripts/copy-pages.mjs copies content/pages → public/pages at build
- prerender.mjs extended to prerender published pages
- All blocks styled with design tokens + Framer Motion animations

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-18 22:29:51 +00:00

32 lines
528 B
CSS

.block-stats {
padding: 60px 24px;
}
.block-stats-grid {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 32px;
}
.block-stats-item {
display: flex;
flex-direction: column;
align-items: center;
}
.block-stats-value {
font-size: 3rem;
font-weight: 700;
color: var(--orange-100);
line-height: 1.2;
}
.block-stats-label {
font-size: 0.9rem;
color: var(--light-grey-100);
opacity: 0.8;
margin-top: 8px;
text-align: center;
}