INSERT INTO settings (setting_key, setting_value, setting_group) VALUES
('footer_logo_path', '', 'footer'),
('footer_brand_title', 'Rising Bharat Cricket League', 'footer'),
('footer_policies_title', 'Our Policies', 'footer'),
('footer_about_title', 'About Us', 'footer'),
('footer_quick_title', 'Quick Links', 'footer'),
('footer_copyright', '© Shivay Sports Management Pvt Ltd | All Rights Reserved | 2026', 'footer'),
('footer_facebook_url', '#', 'footer_social'),
('footer_twitter_url', '#', 'footer_social'),
('footer_instagram_url', '#', 'footer_social'),
('footer_youtube_url', '#', 'footer_social'),
('footer_policies_links', '[{"label":"Payment Policy","url":"/page/payment-policy"},{"label":"Term & Condition","url":"/page/terms-and-conditions"},{"label":"Code of Conduct","url":"/page/code-of-conduct"},{"label":"Privacy Policy","url":"/page/privacy-policy"}]', 'footer_links'),
('footer_about_links', '[{"label":"What is RBCL?","url":"/page/what-is-rbcl"},{"label":"Our Team","url":"/page/our-team"},{"label":"Our Gallery","url":"/gallery"},{"label":"Selection Process","url":"/page/selection-process"}]', 'footer_links'),
('footer_quick_links', '[{"label":"Pay Fees","url":"/match-fee"},{"label":"Organisers","url":"/page/organisers"},{"label":"Management","url":"/page/management"},{"label":"Contact Us","url":"/page/contact-us"}]', 'footer_links')
ON DUPLICATE KEY UPDATE setting_value = VALUES(setting_value), setting_group = VALUES(setting_group);
