dynamic news

This commit is contained in:
2025-05-16 11:41:36 +03:00
parent 21498f8f25
commit 8d7be8f829
12 changed files with 130 additions and 31 deletions

View File

@@ -54,3 +54,15 @@ export interface FAQ {
export interface FAQProps {
faqs: FAQ[]
}
export interface NewsItem {
id: number
title: string
content: string
image: string
slug: string
}
export interface NewsProps {
news: NewsItem[]
}