49 lines
No EOL
2.3 KiB
SQL
49 lines
No EOL
2.3 KiB
SQL
-- Add branding category to system_settings if needed
|
|
INSERT INTO system_settings (key, value, category) VALUES
|
|
('branding_enabled', 'true', 'branding')
|
|
ON CONFLICT (key) DO NOTHING;
|
|
|
|
-- Create default branding settings
|
|
INSERT INTO system_settings (key, value, category)
|
|
VALUES
|
|
('site_name', 'Rocks, Bones & Sticks', 'branding'),
|
|
|
|
|
|
('site_main_page_title', 'Discover Natural Wonders', 'branding'),
|
|
('site_main_page_subtitle', 'Unique rocks, bones, and sticks from around my backyard', 'branding'),
|
|
('site_main_newsletter_desc', 'Subscribe to our newsletter for updates on new items and promotions', 'branding'),
|
|
('site_main_bottom_sting', 'Ready to explore more?', 'branding'),
|
|
('site_description', 'Your premier source for natural curiosities and unique specimens', 'branding'),
|
|
('site_quicklinks_title', 'Quick Links', 'branding'),
|
|
('site_connect', 'Connect With Us', 'branding'),
|
|
|
|
('blog_title', 'Our Blog', 'branding'),
|
|
('blog_desc', 'Discover insights about our natural collections, sourcing adventures, and unique specimens', 'branding'),
|
|
('blog_no_content_title', 'No blog posts found', 'branding'),
|
|
('blog_no_content_subtitle', 'Check back soon for new content', 'branding'),
|
|
('blog_search', 'Search blog posts', 'branding'),
|
|
|
|
('cart_empty', 'Your Cart is Empty', 'branding'),
|
|
('cart_empty_subtitle', 'Looks like you have not added any items to your cart yet.', 'branding'),
|
|
|
|
('product_title', 'Products', 'branding'),
|
|
|
|
('orders_title', 'My Orders', 'branding'),
|
|
('orders_empty', 'You have not placed any orders yet.', 'branding'),
|
|
|
|
|
|
('default_mode', 'light', 'branding'),
|
|
('copyright_text', '© 2025 Rocks, Bones & Sticks. All rights reserved.', 'branding'),
|
|
('light_primary_color', '#7e57c2', 'branding'),
|
|
('light_secondary_color', '#ffb300', 'branding'),
|
|
('light_background_color', '#f5f5f5', 'branding'),
|
|
('light_surface_color', '#ffffff', 'branding'),
|
|
('light_text_color', '#000000', 'branding'),
|
|
('dark_primary_color', '#9575cd', 'branding'),
|
|
('dark_secondary_color', '#ffd54f', 'branding'),
|
|
('dark_background_color', '#212121', 'branding'),
|
|
('dark_surface_color', '#424242', 'branding'),
|
|
('dark_text_color', '#ffffff', 'branding'),
|
|
('logo_url', '', 'branding'),
|
|
('favicon_url', '', 'branding')
|
|
ON CONFLICT (key) DO NOTHING; |