Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,17 @@ This repository uses a **DMZ git workflow** to ensure the `main` branch is alway

🔒 **[Branch Protection Setup Guide](.github/BRANCH-PROTECTION-SETUP.md)** - Configure GitHub branch protection rules to enforce the workflow.

## SEO & AI Crawler Access

This repository is configured to allow AI crawlers and search engines to index your content for maximum discoverability. All starter applications include:

- **AI Crawler Support**: Explicit allowances for GPTBot (OpenAI), ClaudeBot (Anthropic), PerplexityBot, and other AI crawlers
- **Search Engine Support**: Proper configuration for Googlebot, Bingbot, and other major search engines
- **Dynamic Sitemap**: Automatically generated sitemap.xml linked in robots.txt
- **Error Page Handling**: 404 pages include noindex meta tags to prevent indexing of error pages

📖 **[Read the AI Crawler Access Guide](docs/AI_CRAWLER_ACCESS.md)** for detailed configuration instructions, hosting provider setup (Vercel, Azure, Netlify), and how to restrict access if needed.

## AI-Assisted Development

This repository includes comprehensive AI guidance files to help maintain consistent code quality and follow Sitecore XM Cloud best practices across all starter applications:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,17 +187,17 @@ SharedFields:
Write-Verbose "Update home page fields"
$title = "Solterra & Co."
$shortTitle = "Solterra & Co."

$description = "Discover wellness, lifestyle, and editorial content that inspires your everyday journey with Solterra & Co."
$item."pageTitle" = $title
$item."pageShortTitle" = $shortTitle
$item."pageHeaderTitle" = $shortTitle
$item."pageSummary" = $title

$item."pageSummary" = $description
$item."metadataTitle" = $title
$item."metadataDescription" = $title
$item."metadataKeywords" = "Alaris, electric, future"
$item."metadataDescription" = $description
$item."metadataKeywords" = "Solterra & Co., wellness, editorial, lifestyle"
$item."ogTitle" = $title
$item."ogDescription" = $title
$item."ogDescription" = $description
$item."ogImage" = "<image mediaid=`"{B229B500-1CAB-40E4-9989-496FDEE77286}`" />"

Write-Verbose "Update nagivation links"
$aboutUs = Get-Item "$sitePath/Presentation/Partial Designs/Global/Header/Data/Global Header/About Us"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,19 +303,19 @@ SharedFields:
Set-Rendering -Item $testDriveItem -FinalLayout

Write-Verbose "Update home page fields"
$title = "Alaris - Get set for an electric future."
$title = "Alaris - Get set for an electric future"
$shortTitle = "Alaris"

$description = "Experience the future of electric vehicles with Alaris. Explore our innovative lineup of sustainable cars designed for tomorrow."
$item."pageTitle" = $title
$item."pageShortTitle" = $shortTitle
$item."pageHeaderTitle" = $shortTitle
$item."pageSummary" = $title

$item."pageSummary" = $description
$item."metadataTitle" = $title
$item."metadataDescription" = $title
$item."metadataKeywords" = "Alaris, electric, future"
$item."metadataDescription" = $description
$item."metadataKeywords" = "Alaris, electric vehicles, EV, sustainable cars, future mobility"
$item."ogTitle" = $title
$item."ogDescription" = $title
$item."ogDescription" = $description
$item."ogImage" = "<image mediaid=`"{34DE6E63-EE15-4D55-AEEA-C5600D7E7EB8}`" />"

# Add Promo variants
$promoVariant = Get-Item -Path "$sitePath/Presentation/Headless Variants/Promo" -Language $Site.Language
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,17 +205,17 @@ SharedFields:
Write-Verbose "Update home page fields"
$title = "SYNC"
$shortTitle = "SYNC"

$description = "Premium audio equipment and speakers designed for audiophiles. Experience exceptional sound quality with SYNCs heritage collection."
$item."pageTitle" = $title
$item."pageShortTitle" = $shortTitle
$item."pageHeaderTitle" = $shortTitle
$item."pageSummary" = $title

$item."pageSummary" = $description
$item."metadataTitle" = $title
$item."metadataDescription" = $title
$item."metadataKeywords" = "Symphonic, audio, speakers, headphones"
$item."metadataDescription" = $description
$item."metadataKeywords" = "SYNC, audio equipment, speakers, headphones, premium sound, audiophile"
$item."ogTitle" = $title
$item."ogDescription" = $title
$item."ogDescription" = $description
$item."ogImage" = "<image mediaid=`"{5977A6A5-D5D4-45BD-ADD5-0E7E629162FD}`" />"

Write-Verbose "Create dictionary items"
$dictionaryRoot = Get-Item -Path "$sitePath/Dictionary" -Language $Site.Language
Expand Down
Loading
Loading