INSERT INTO pages (title, slug, content, seo_title, seo_description, seo_keywords, status) VALUES
('Payment Policy', 'payment-policy', '<h2>Payment Policy</h2><p>RBCL registration fees and match fees are collected through official payment channels only. Players must keep their registration number and payment receipt for future reference.</p><p>Registration payment is required before match fee payment. Match fee requests are created by the super admin based on category, squad, or event requirement.</p>', 'RBCL Payment Policy', 'Payment policy for RBCL registration and match fee.', 'RBCL payment policy, match fee, registration fee', 'published'),
('Code of Conduct', 'code-of-conduct', '<h2>Code of Conduct</h2><p>All players, parents, coaches, and organisers must follow RBCL discipline, reporting instructions, fair-play guidelines, and event rules.</p><p>Misconduct, false documents, abusive behaviour, or violation of cricketing ethics may lead to suspension or rejection.</p>', 'RBCL Code of Conduct', 'Code of conduct for RBCL players and participants.', 'RBCL code of conduct, cricket rules', 'published'),
('Our Team', 'our-team', '<h2>Our Team</h2><p>RBCL is managed by Shivay Sports Management Pvt Ltd with support from event coordinators, selectors, coaches, and operational teams across India.</p><p>Team information, selectors, organisers, and regional coordinators can be updated from the CMS by super admin.</p>', 'RBCL Our Team', 'RBCL team, selectors and coordinators.', 'RBCL team, cricket organisers', 'published'),
('Our Gallery', 'our-gallery', '<h2>Our Gallery</h2><p>RBCL gallery showcases cricket trials, player practice, league matches, ceremonies, and event highlights.</p><p>Gallery photos can be managed from the Gallery module in the super admin panel.</p>', 'RBCL Gallery', 'RBCL cricket trial and match gallery.', 'RBCL gallery, cricket photos', 'published'),
('Organisers', 'organisers', '<h2>Organisers</h2><p>RBCL events are organised under the supervision of Shivay Sports Management Pvt Ltd and authorised regional teams.</p><p>For organiser-related queries, contact the official RBCL support desk.</p>', 'RBCL Organisers', 'RBCL event organisers and management.', 'RBCL organisers', 'published'),
('Management', 'management', '<h2>Management</h2><p>RBCL management handles registration, trials, payment requests, match scheduling, result publishing, player verification, and league operations.</p><p>Management information can be edited through the CMS pages module.</p>', 'RBCL Management', 'RBCL management and operations.', 'RBCL management', 'published'),
('Contact Us', 'contact-us', '<h2>Contact Us</h2><p>Phone: 09243619991<br>Email: info@myrbcl.com</p><p>Address: 504, Usha Pride, Mowa, New Raipur, Chhattisgarh.</p>', 'Contact RBCL', 'Contact Rising Bharat Cricket League.', 'RBCL contact', 'published')
ON DUPLICATE KEY UPDATE
    title = VALUES(title),
    content = VALUES(content),
    seo_title = VALUES(seo_title),
    seo_description = VALUES(seo_description),
    seo_keywords = VALUES(seo_keywords),
    status = 'published';

INSERT INTO settings (setting_key, setting_value, setting_group) VALUES
('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);
