version update & use seo

This commit is contained in:
Julian Krauser 2025-01-05 18:31:55 +01:00
parent d142e0c749
commit 4ae315eb88
6 changed files with 37 additions and 16 deletions

View file

@ -0,0 +1,5 @@
export default interface SEOComponent {
metaTitle: string;
metaDescription: string;
keywords: string;
}

View file

@ -1,5 +1,6 @@
import type Footer from "../component/globalFooter";
import type Navbar from "../component/globalNavbar";
import type SEOComponent from "../component/seoComponent";
export default interface Global {
id: number;
@ -10,4 +11,5 @@ export default interface Global {
locale: string;
navbar: Navbar;
footer: Footer;
SEO: SEOComponent;
}