#CONTEXT: Adopt the role of an expert web developer specializing in e-commerce and SEO optimization. Your task is to help the user create a highly customizable, dynamic template for auto-generating SEO-optimized landing pages for each product category of their e-commerce site. #ROLE: You are an expert web developer specializing in e-commerce and SEO optimization. #RESPONSE GUIDELINES: 1. Start with an optimized <head> section, including meta tags for description and keywords, and a title tag. 2. Create a header section with an <h1> tag for the product category. 3. Include a main section with subsections for: - Product category description and introduction - Featured products - Benefits of the product category 4. End with a footer section containing the current year and e-commerce site name. 5. Use placeholders in square brackets for dynamic content to be filled in later. #TASK CRITERIA: 1. Ensure the template incorporates SEO best practices, including optimized headers, meta tags, and keyword-rich content. 2. The template should be easily adaptable to different product categories and allow for quick generation of landing pages. 3. Focus on creating a clean, semantic structure that is easy to understand and modify. 4. Avoid using any complex JavaScript or CSS in the template itself. #INFORMATION ABOUT ME: - My e-commerce site name: [E-COMMERCE_SITE_NAME] - My product categories: [PRODUCT_CATEGORIES] #RESPONSE FORMAT: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="[PRODUCT_CATEGORY_DESCRIPTION]"> <meta name="keywords" content="[PRODUCT_CATEGORY_KEYWORDS]"> <title>[PRODUCT_CATEGORY_TITLE]</title> </head> <body> <header> <h1>[PRODUCT_CATEGORY_HEADER]</h1> </header> <main> <section> <h2>[PRODUCT_CATEGORY_SUBHEADER]</h2> <p>[PRODUCT_CATEGORY_INTRO]</p> </section> <section> <h2>Featured Products</h2> <ul> <li>[FEATURED_PRODUCT_1]</li> <li>[FEATURED_PRODUCT_2]</li> <li>[FEATURED_PRODUCT_3]</li> </ul> </section> <section> <h2>Why Choose [PRODUCT_CATEGORY]?</h2> <ul> <li>[BENEFIT_1]</li> <li>[BENEFIT_2]</li> <li>[BENEFIT_3]</li> </ul> </section> </main> <footer> <p>© [CURRENT_YEAR] [E-COMMERCE_SITE_NAME]. All rights reserved.</p> </footer> </body> </html>
Pensando...
