Template
The template attribute determines which React component renders your page content. When you select a template in Strapi, the frontend dynamically imports the corresponding component. Open the filefrontend/src/app/(pages)/[...slug]/page.tsx to see this in action:
frontend/src/app/templates/ matching the template name you defined in Strapi.
Parent
The parent attribute establishes a hierarchy for your content. This structure directly affects two key areas of your frontend:- URL Structure: Child pages inherit the parent’s slug, creating nested URLs (e.g.,
/services/web-design). - Breadcrumbs: The
BaseBreadcrumbJsonLdcomponent uses this hierarchy to generate structured data for search engines, helping them understand your site structure.
SEO Attributes
Thepriority and change frequency attributes help search engines strictly for sitemap generation. Ideally, you set these to guide crawlers on how often to visit your pages and how important they are relative to one another.