diff --git a/src/data/content-seed.ts b/src/data/content-seed.ts index 5075c6d..f831e87 100644 --- a/src/data/content-seed.ts +++ b/src/data/content-seed.ts @@ -11,9 +11,9 @@ import { performanceClassPricing } from './pricing'; export type ContentType = 'text' | 'html' | 'image'; export interface SeedEntry { tag: string; type: ContentType; value: string; styleOptions?: StyleGroup[] } -const T = (tag: string, value: string, styleOptions: StyleGroup[] = ['size', 'color', 'weight', 'style']): SeedEntry => +const T = (tag: string, value: string, styleOptions: StyleGroup[] = ['size', 'color', 'weight', 'style', 'align']): SeedEntry => ({ tag, type: 'text', value, styleOptions }); -const H = (tag: string, value: string, styleOptions: StyleGroup[] = ['size', 'color']): SeedEntry => +const H = (tag: string, value: string, styleOptions: StyleGroup[] = ['size', 'color', 'align']): SeedEntry => ({ tag, type: 'html', value, styleOptions }); const I = (tag: string): SeedEntry => ({ tag, type: 'image', value: '' }); diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro index 4e4263d..0c402c9 100644 --- a/src/layouts/Base.astro +++ b/src/layouts/Base.astro @@ -107,7 +107,7 @@ const showTags = canTags && wantTags;