Feature: 解决方案列表 & 网页字体

This commit is contained in:
2025-08-22 10:58:04 +08:00
parent e9b6409144
commit 3d858e475e
20 changed files with 233 additions and 35 deletions

View File

@ -1,3 +1,4 @@
export * from './common';
export * from './production';
export * from './singleTypes';
export * from './singleTypes';
export * from './solution';

View File

@ -0,0 +1,13 @@
import type { StrapiEntity, StrapiImage } from './common';
export interface SolutionType extends StrapiEntity {
type: string;
}
export interface Solution extends StrapiEntity {
title: string;
summary: string;
cover: StrapiImage;
solution_type: SolutionType;
content: string;
}