updated widgets

This commit is contained in:
2026-02-25 17:35:01 +09:00
parent 787724b09c
commit e4d2966377
43 changed files with 3648 additions and 180 deletions

View File

@@ -3,6 +3,7 @@ export interface PostData {
post_author: string;
post_name: string;
post_title: string;
post_type: string;
post_excerpt: string;
post_date: string;
post_date_gmt: string;
@@ -12,4 +13,12 @@ export interface PostData {
export interface PagePayload {
page: number;
}
export interface CarouselSlide {
id: number
title?: string
description?: string
src: string
href?: string
}