SSR: content prepared on the server
The Twicart storefront prepares essential search content on the server and includes it in the HTML output. SSR means constructing the page’s content structure on the server. Core product and category information is therefore part of the initial page response.
This approach considers visible product content and the content available to search engines together. Presenting product names, descriptions and category listings in an understandable page structure supports content management and technical SEO.
SSR on product pages, field by field
| Area | SEO approach |
|---|---|
| Product name | The product name is included in server-rendered page content and identifies the product. |
| Product image | The image’s HTML element is part of server output. Loading the image file in the browser is a separate step; inclusion in HTML does not mean every image file downloads at once. |
| Product description | Product descriptions prepared for SEO form part of the server-rendered content structure. Explain the product’s use and distinguishing details here. |
SSR on category pages, including listings and pagination
| Area | SEO approach |
|---|---|
| Category content | The category name and SEO descriptions form part of the server-rendered page content. |
| Products in the category | The product listing for the requested category page is server-rendered, including product names, image elements and product-page links. |
| Pagination | Pagination links are included in the server-rendered structure. Links lead to further catalogue pages; the requested page contains its own product listing. |
H1, H2 and meaningful HTML structure
Twicart’s page structure is designed around purposeful HTML elements. Main headings, section headings, descriptions and links form a content hierarchy. Headings describe sections rather than serving only as a way to enlarge text.
| Area | SEO approach |
|---|---|
| H1 | Describes the page’s main subject, such as a product or category name. |
| H2 | Divides the main subject into sections such as use, specifications or frequently asked questions. |
| H3 | Organises subtopics within a section. |
| Paragraph, list and link | Presents explanations, features and navigation with elements suited to their purpose. |
SSR and browser interactions have different roles
Content in the initial HTML does not make a page non-interactive. Moving through a gallery, opening a modal or responding to form input can use browser JavaScript. These illustrate client-side interactions, not a claim that each Twicart component is rendered only through CSR.
A server-rendered component can become interactive in the browser. Clickability does not imply absence from the initial HTML. The SSR scope here concerns product and category content; a component-level CSR inventory requires inspection of rendered output.