const db = require("./config/database"); const organizedContactHTML = `

Our Contact Information

Reach out to us through any of these channels

Phone

+1 (555) 123-4567

Email

contact@skyartshop.com

Location

123 Art Street, Creative City, CC 12345

Business Hours

Monday - Friday

9:00 AM - 6:00 PM

Saturday

10:00 AM - 4:00 PM

Sunday

Closed

`; async function restoreContactLayout() { try { const result = await db.query( `UPDATE pages SET pagecontent = $1, content = $1 WHERE slug = 'contact' RETURNING id, title`, [organizedContactHTML] ); if (result.rows.length > 0) { console.log("✓ Contact page layout restored successfully"); console.log(` Page: ${result.rows[0].title}`); console.log( ` Content length: ${organizedContactHTML.length} characters` ); } else { console.log("✗ Contact page not found"); } process.exit(0); } catch (error) { console.error("Error restoring contact layout:", error); process.exit(1); } } restoreContactLayout();