[dyad] Refactored the meta form component - wrote 4 file(s)
This commit is contained in:
16
src/lib/types.ts
Normal file
16
src/lib/types.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { HeadlineNode, ImageAltData } from "@/app/actions";
|
||||
|
||||
export interface MetaData {
|
||||
title: string;
|
||||
description: string;
|
||||
image?: string | null;
|
||||
faq?: { question: string; answer: string }[] | null;
|
||||
schema?: any[] | null;
|
||||
headlines?: HeadlineNode[] | null;
|
||||
keyword?: string | null;
|
||||
keywordCount?: number | null;
|
||||
images?: ImageAltData[] | null;
|
||||
canonical?: string | null;
|
||||
keywords?: string | null;
|
||||
robots?: string | null;
|
||||
}
|
||||
Reference in New Issue
Block a user