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