import Banner from "@/components/Banner"; import styles from "./Founder.module.css"; import ParagraphSection from "@/components/layout/ParagraphSection"; import { useStore } from "@/store"; export default function AboutFounder() { const appConfig = useStore((s) => s.appConfig); const founder = appConfig?.about?.founder; const banner = founder?.banner; const section1Data = founder?.section1Data; const section2Data = founder?.section2Data; if (!founder) return null; return (
{section1Data && (
{section1Data.items?.map((item, index) => (
{item.title}
{item.title}
{item.content}
))}
)} {section2Data && (

{section2Data.title}

{section2Data.subtitle}

个人照

)}
); }