| 4 | import { Footer } from "../Footer"; |
| 5 | |
| 6 | interface BlogPost { |
| 7 | slug: string; |
| 8 | title: string; |
| 9 | description: string; |
| 10 | date: string; |
| 11 | image: string; |
| 12 | } |
| 13 | |
| 14 | const posts: BlogPost[] = [ |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…