'use client' import type { EducationContent } from './types' interface EducationCardProps { content: EducationContent | undefined } export function EducationCard({ content }: EducationCardProps) { if (!content) return null return (
{line}