Implement creator studio and upload updates
This commit is contained in:
@@ -51,13 +51,19 @@ return [
|
||||
],
|
||||
|
||||
'render' => [
|
||||
'queue' => env('NOVA_CARDS_QUEUE', 'default'),
|
||||
'preview_quality' => 86,
|
||||
'og_quality' => 88,
|
||||
'preview_format' => 'webp',
|
||||
'og_format' => 'jpg',
|
||||
'queue' => env('NOVA_CARDS_QUEUE', 'default'),
|
||||
'preview_quality' => 86,
|
||||
'og_quality' => 88,
|
||||
'preview_format' => 'webp',
|
||||
'og_format' => 'jpg',
|
||||
// Directory containing TrueType font files named {preset}.ttf and default.ttf.
|
||||
'fonts_dir' => env('NOVA_CARDS_FONTS_DIR', storage_path('app/fonts')),
|
||||
],
|
||||
|
||||
// Set NOVA_CARDS_PLAYWRIGHT_RENDER=true to use the CSS/Playwright renderer
|
||||
// instead of the GD fallback. Requires Node.js + `npx playwright install chromium`.
|
||||
'playwright_render' => (bool) env('NOVA_CARDS_PLAYWRIGHT_RENDER', false),
|
||||
|
||||
'seed_demo_cards' => [
|
||||
'enabled' => (bool) env('NOVA_CARDS_SEED_DEMO_CARDS', false),
|
||||
'user' => [
|
||||
@@ -79,42 +85,42 @@ return [
|
||||
'font_presets' => [
|
||||
'modern-sans' => [
|
||||
'label' => 'Modern Sans',
|
||||
'family' => 'ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
|
||||
'family' => 'Inter, sans-serif',
|
||||
'render_family' => 'arial',
|
||||
'weight' => '600',
|
||||
'recommended_use' => 'Clean motivational cards and bold statements.',
|
||||
],
|
||||
'elegant-serif' => [
|
||||
'label' => 'Elegant Serif',
|
||||
'family' => 'Georgia, Cambria, "Times New Roman", serif',
|
||||
'family' => '"Playfair Display", serif',
|
||||
'render_family' => 'georgia',
|
||||
'weight' => '700',
|
||||
'recommended_use' => 'Classic quotes and romantic layouts.',
|
||||
],
|
||||
'bold-poster' => [
|
||||
'label' => 'Bold Poster',
|
||||
'family' => 'Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif',
|
||||
'family' => 'Anton, sans-serif',
|
||||
'render_family' => 'arial-black',
|
||||
'weight' => '700',
|
||||
'recommended_use' => 'High-contrast poster-like statements.',
|
||||
],
|
||||
'soft-handwritten' => [
|
||||
'label' => 'Soft Handwritten',
|
||||
'family' => '"Segoe Print", "Bradley Hand", cursive',
|
||||
'family' => 'Caveat, cursive',
|
||||
'render_family' => 'comic-sans',
|
||||
'weight' => '400',
|
||||
'recommended_use' => 'Warm, intimate, diary-like cards.',
|
||||
],
|
||||
'minimal-editorial' => [
|
||||
'label' => 'Minimal Editorial',
|
||||
'family' => '"Trebuchet MS", "Gill Sans", sans-serif',
|
||||
'family' => '"Libre Franklin", sans-serif',
|
||||
'render_family' => 'trebuchet',
|
||||
'weight' => '600',
|
||||
'recommended_use' => 'Minimal editorial compositions.',
|
||||
],
|
||||
'dreamy-aesthetic' => [
|
||||
'label' => 'Dreamy Aesthetic',
|
||||
'family' => '"Palatino Linotype", "Book Antiqua", Palatino, serif',
|
||||
'family' => '"Cormorant Garamond", serif',
|
||||
'render_family' => 'palatino',
|
||||
'weight' => '600',
|
||||
'recommended_use' => 'Poetry, wallpaper quotes, and soft mood cards.',
|
||||
|
||||
Reference in New Issue
Block a user