This commit is contained in:
leroy
2025-04-19 17:12:52 +02:00
parent 2fb15b4a4c
commit 1ee0778e62
14 changed files with 153 additions and 184 deletions

8
src/app/_models/seo.ts Normal file
View File

@@ -0,0 +1,8 @@
export interface SEOConfig {
title: string;
description: string;
keywords?: string;
ogTitle?: string;
ogDescription?: string;
ogImage?: string;
}