const basicHTMLTemplate = ` Test App

Welcome to Test App

This is a test application for validating code generation.

`; const basicCSSFile = `/* Additional styles */ .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .btn { display: inline-block; padding: 10px 20px; background: #007bff; color: white; text-decoration: none; border-radius: 5px; border: none; cursor: pointer; } .btn:hover { background: #0056b3; }`; const basicJSFile = ` document.addEventListener('DOMContentLoaded', function() { const navLinks = document.querySelectorAll('nav a'); navLinks.forEach(link => { link.addEventListener('click', function(e) { e.preventDefault(); }); }); });`; export const defaultPromptMd = `You are building a website. Use HTML, CSS, and JavaScript.`; export const handlebarsSetup: Record = { '/.PROMPT.md': defaultPromptMd, '/index.html': ` {{site_title}} {{> header}}

{{page_heading}}

Welcome to our site.

`, '/about.html': ` About - {{site_title}} {{> header}}

About Us

We build great things.

`, '/templates/header.hbs': `
`, '/data.json': `{"site_title": "Curl Test Site", "page_heading": "Welcome Home"}`, '/styles.css': `body { font-family: sans-serif; }`, }; export const standardSetup: Record = { '/.PROMPT.md': defaultPromptMd, '/index.html': basicHTMLTemplate, '/styles.css': basicCSSFile, '/script.js': basicJSFile, }; export { basicHTMLTemplate, basicCSSFile, basicJSFile };