1234567891011121314151617181920212223242526 |
- import { useHead } from '#imports';
- const seoSetup = (title: string, description: string, keywords: string) => {
- useHead({
- title: title,
- meta: [
- { name: 'description', content: description },
- { name: 'keywords', content: keywords }
- ]
- });
- };
- export {seoSetup};
|