version update & use seo
This commit is contained in:
parent
d142e0c749
commit
4ae315eb88
6 changed files with 37 additions and 16 deletions
5
types/component/seoComponent.ts
Normal file
5
types/component/seoComponent.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
export default interface SEOComponent {
|
||||
metaTitle: string;
|
||||
metaDescription: string;
|
||||
keywords: string;
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue