Content
Update stats and trust badges
Two separate places: numbered stats (500+, 10+ years…) and short trust lines with checkmarks on the home page.
Stats block
Edit src/i18n/stats.ts. Each item has value (display number) and label in EN/TR.
export const stats = [
{ value: "1200+", label: { en: "Happy Clients", tr: "Mutlu Müşteri" } },
{ value: "15+", label: { en: "Years Experience", tr: "Yıl Deneyim" } },
];
Trust badges
Badge text is in src/components/sections/trust/TrustBadgesSection.astro (badges array with en/tr). Edit the strings there — four badges show in a row on the home page.
const badges = [
{ en: "Licensed & Certified", tr: "Lisanslı ve Sertifikalı" },
{ en: "5-Star Rated", tr: "5 Yıldızlı Değerlendirme" },
];
Check the home page
StatsSection and TrustBadgesSection render on index.astro for both EN and TR home pages.