fix: Update website UI #1

Merged
xelopsys merged 4 commits from update-website into main 2026-02-26 03:17:30 +00:00
xelopsys commented 2026-02-25 02:18:05 +00:00 (Migrated from github.com)
No description provided.
orzklv (Migrated from github.com) reviewed 2026-02-25 02:18:05 +00:00
copilot-pull-request-reviewer[bot] (Migrated from github.com) reviewed 2026-02-25 06:30:05 +00:00
copilot-pull-request-reviewer[bot] (Migrated from github.com) left a comment

Pull request overview

This pull request updates the website UI by translating all user-facing content from English to Uzbek (Latin script) and implementing a new brand color scheme. The changes transform the application from an English-language interface to a fully localized Uzbek interface while updating the visual design with new brand colors and logos.

Changes:

  • Complete translation of all UI text, navigation, FAQs, and privacy policy from English to Uzbek
  • Introduction of new brand color system (oklch-based color variables) replacing gray theme
  • Updated logos and favicon with new brand identity assets

Reviewed changes

Copilot reviewed 14 out of 17 changed files in this pull request and generated no comments.

Show a summary per file
File Description
src/styles/tailwind.css Added brand color variables (brand, brand-100 through brand-700) using oklch color space
src/components/SecondaryFeatures.tsx Translated feature titles and descriptions to Uzbek
src/components/PrimaryFeatures.tsx Translated features, updated styling from gray to brand colors, minor formatting improvements
src/components/PhoneFrame.tsx Changed phone frame background from gray-900 to brand color
src/components/NavLinks.tsx Translated navigation link labels to Uzbek
src/components/Hero.tsx Translated hero section, updated background gradient colors to brand color, removed mask property from BackgroundIllustration
src/components/Header.tsx Added Image import, replaced Logo component with image, translated navigation and button text, updated mobile menu links
src/components/Footer.tsx Replaced Logomark with Image component for new logo, translated tagline
src/components/Faqs.tsx Translated all FAQ questions and answers, minor class ordering change
src/components/CallToAction.tsx Translated call-to-action heading and description, updated background to brand-700
src/components/AppScreen.tsx Added Image import, replaced Logo SVG with favicon image
src/components/AppDemo.tsx Updated background color from gray-900 to brand
src/app/favicon.ico Added new favicon binary file
src/app/(main)/privacy/page.md Complete translation of privacy policy to Uzbek
src/app/(main)/privacy/layout.tsx Added responsive padding (px-4, sm:px-6, lg:px-8) to privacy page layout
public/logo.svg Added new logo SVG file
public/favicon.svg Added new favicon SVG file
Comments suppressed due to low confidence (7)

src/components/Hero.tsx:125

  • The mask property was removed from the BackgroundIllustration element. This could affect the visual appearance by removing the gradient fade effect that was previously applied. Consider whether this visual change was intentional or if the mask should be preserved for aesthetic consistency.
            <BackgroundIllustration className="absolute top-4 left-1/2 h-[1026px] w-[1026px] -translate-x-1/3 stroke-brand sm:top-16 sm:-translate-x-1/2 lg:-top-16 lg:ml-12 xl:-top-14 xl:ml-0" />

src/components/PrimaryFeatures.tsx:563

  • The word "Xufyona" appears to be a spelling error. It should likely be "Xususiy" which means "private" in Uzbek. "Xufyona" is not a standard Uzbek word.
            Xufyona va mustaqil muloqot uchun kerakli barcha narsa. O‘zingiz

src/components/PrimaryFeatures.tsx:351

  • The word "Qadash" should be "Qadamoq" or "Mahkamlash" which means "to pin" in Uzbek. "Qadash" is not the correct infinitive form in Uzbek.
            <p>Qadash</p>

src/components/Footer.tsx:26

  • Inconsistent apostrophe usage: This line uses a backtick (`) instead of a proper single quote ('). For consistency with other translations in the codebase (e.g., Hero.tsx line 110), this should use a single quote character.
                <p className="mt-1 text-sm">O`z efiringizni kashf eting.</p>

src/app/(main)/privacy/page.md:43

  • The translation "Uchrashuvdagi ishtirok metama'lumotlari" should be "Xonadagi ishtirok metama'lumotlari" since the original English refers to "Room participation metadata" (Matrix rooms, not meetings/uchrashuvlar).
- Uchrashuvdagi ishtirok metama'lumotlari (masalan, qo‘ng‘iroqqa qo‘shilganingizda)

src/app/(main)/privacy/page.md:3

  • The date format "July 2025" is inconsistent with the Uzbek translation throughout the document. It should be translated to Uzbek as "Iyul 2025" or use a localized format.
- **Kuchga kirish sanasi:** July 2025

src/components/Header.tsx:120

  • Inconsistent anchor link format: The mobile navigation uses "#features" while the desktop NavLinks component uses "/#features". Both should use the same format for consistency. The "/#features" format is more reliable for anchor links that need to work from any page, while "#features" only works reliably on the current page.
                            <MobileNavLink href="#features">
                              Xususiyatlar
                            </MobileNavLink>
                            <MobileNavLink href="#faqs">
                              Savol-javoblar
                            </MobileNavLink>
                            <MobileNavLink href="/privacy">
                              Maxfiylik
                            </MobileNavLink>

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

## Pull request overview This pull request updates the website UI by translating all user-facing content from English to Uzbek (Latin script) and implementing a new brand color scheme. The changes transform the application from an English-language interface to a fully localized Uzbek interface while updating the visual design with new brand colors and logos. **Changes:** - Complete translation of all UI text, navigation, FAQs, and privacy policy from English to Uzbek - Introduction of new brand color system (oklch-based color variables) replacing gray theme - Updated logos and favicon with new brand identity assets ### Reviewed changes Copilot reviewed 14 out of 17 changed files in this pull request and generated no comments. <details> <summary>Show a summary per file</summary> | File | Description | | ---- | ----------- | | src/styles/tailwind.css | Added brand color variables (brand, brand-100 through brand-700) using oklch color space | | src/components/SecondaryFeatures.tsx | Translated feature titles and descriptions to Uzbek | | src/components/PrimaryFeatures.tsx | Translated features, updated styling from gray to brand colors, minor formatting improvements | | src/components/PhoneFrame.tsx | Changed phone frame background from gray-900 to brand color | | src/components/NavLinks.tsx | Translated navigation link labels to Uzbek | | src/components/Hero.tsx | Translated hero section, updated background gradient colors to brand color, removed mask property from BackgroundIllustration | | src/components/Header.tsx | Added Image import, replaced Logo component with image, translated navigation and button text, updated mobile menu links | | src/components/Footer.tsx | Replaced Logomark with Image component for new logo, translated tagline | | src/components/Faqs.tsx | Translated all FAQ questions and answers, minor class ordering change | | src/components/CallToAction.tsx | Translated call-to-action heading and description, updated background to brand-700 | | src/components/AppScreen.tsx | Added Image import, replaced Logo SVG with favicon image | | src/components/AppDemo.tsx | Updated background color from gray-900 to brand | | src/app/favicon.ico | Added new favicon binary file | | src/app/(main)/privacy/page.md | Complete translation of privacy policy to Uzbek | | src/app/(main)/privacy/layout.tsx | Added responsive padding (px-4, sm:px-6, lg:px-8) to privacy page layout | | public/logo.svg | Added new logo SVG file | | public/favicon.svg | Added new favicon SVG file | </details> <details> <summary>Comments suppressed due to low confidence (7)</summary> **src/components/Hero.tsx:125** * The mask property was removed from the BackgroundIllustration element. This could affect the visual appearance by removing the gradient fade effect that was previously applied. Consider whether this visual change was intentional or if the mask should be preserved for aesthetic consistency. ``` <BackgroundIllustration className="absolute top-4 left-1/2 h-[1026px] w-[1026px] -translate-x-1/3 stroke-brand sm:top-16 sm:-translate-x-1/2 lg:-top-16 lg:ml-12 xl:-top-14 xl:ml-0" /> ``` **src/components/PrimaryFeatures.tsx:563** * The word "Xufyona" appears to be a spelling error. It should likely be "Xususiy" which means "private" in Uzbek. "Xufyona" is not a standard Uzbek word. ``` Xufyona va mustaqil muloqot uchun kerakli barcha narsa. O‘zingiz ``` **src/components/PrimaryFeatures.tsx:351** * The word "Qadash" should be "Qadamoq" or "Mahkamlash" which means "to pin" in Uzbek. "Qadash" is not the correct infinitive form in Uzbek. ``` <p>Qadash</p> ``` **src/components/Footer.tsx:26** * Inconsistent apostrophe usage: This line uses a backtick (`) instead of a proper single quote ('). For consistency with other translations in the codebase (e.g., Hero.tsx line 110), this should use a single quote character. ``` <p className="mt-1 text-sm">O`z efiringizni kashf eting.</p> ``` **src/app/(main)/privacy/page.md:43** * The translation "Uchrashuvdagi ishtirok metama'lumotlari" should be "Xonadagi ishtirok metama'lumotlari" since the original English refers to "Room participation metadata" (Matrix rooms, not meetings/uchrashuvlar). ``` - Uchrashuvdagi ishtirok metama'lumotlari (masalan, qo‘ng‘iroqqa qo‘shilganingizda) ``` **src/app/(main)/privacy/page.md:3** * The date format "July 2025" is inconsistent with the Uzbek translation throughout the document. It should be translated to Uzbek as "Iyul 2025" or use a localized format. ``` - **Kuchga kirish sanasi:** July 2025 ``` **src/components/Header.tsx:120** * Inconsistent anchor link format: The mobile navigation uses "#features" while the desktop NavLinks component uses "/#features". Both should use the same format for consistency. The "/#features" format is more reliable for anchor links that need to work from any page, while "#features" only works reliably on the current page. ``` <MobileNavLink href="#features"> Xususiyatlar </MobileNavLink> <MobileNavLink href="#faqs"> Savol-javoblar </MobileNavLink> <MobileNavLink href="/privacy"> Maxfiylik </MobileNavLink> ``` </details> --- 💡 <a href="/uchar-org/website/new/main?filename=.github/instructions/*.instructions.md" class="Link--inTextBlock" target="_blank" rel="noopener noreferrer">Add Copilot custom instructions</a> for smarter, more guided reviews. <a href="https://docs.github.com/en/copilot/customizing-copilot/adding-repository-custom-instructions-for-github-copilot" class="Link--inTextBlock" target="_blank" rel="noopener noreferrer">Learn how to get started</a>.
bahrom04 (Migrated from github.com) requested changes 2026-02-25 10:50:08 +00:00
@ -1,127 +1,125 @@
# Privacy Policy
# Maxfiylik siyosati
bahrom04 (Migrated from github.com) commented 2026-02-25 09:47:53 +00:00
Uzinfocomda biz xavfsiz aloqa asosiy huquq deb hisoblaymiz. Bu maxfiylik siyosati Matrix protokoli asosida qurilgan markazlashmagan xabar almashinuv platformasi Uchar ilovasidan foydalanganingizda qanday maʼlumotlarni olishimiz va ushbu maʼlumotlarni qanday himoyalashimiz va foydalanishimizni tushuntiradi. Biz maʼlumotlaringizni sotmaymiz yoki ulardan reklama maqsadlarida foydalanmaymiz.
```suggestion Uzinfocomda biz xavfsiz aloqa asosiy huquq deb hisoblaymiz. Bu maxfiylik siyosati Matrix protokoli asosida qurilgan markazlashmagan xabar almashinuv platformasi Uchar ilovasidan foydalanganingizda qanday maʼlumotlarni olishimiz va ushbu maʼlumotlarni qanday himoyalashimiz va foydalanishimizni tushuntiradi. Biz maʼlumotlaringizni sotmaymiz yoki ulardan reklama maqsadlarida foydalanmaymiz. ```
bahrom04 (Migrated from github.com) commented 2026-02-25 09:49:35 +00:00
- Bizning rasmiy Matrix uy serverimiz: https://uchar.uz
```suggestion - Bizning rasmiy Matrix uy serverimiz: https://uchar.uz ```
bahrom04 (Migrated from github.com) commented 2026-02-25 09:50:33 +00:00
- Uchar brendi ostidagi Matrix ilovalarimiz (veb, desktop, mobil)
```suggestion - Uchar brendi ostidagi Matrix ilovalarimiz (veb, desktop, mobil) ```
bahrom04 (Migrated from github.com) commented 2026-02-25 09:51:41 +00:00
- Uchinchi shaxslar boshqaradigan boshqa Matrix uy serverlari
- Uzinfocom tomonidan bevosita nazorat qilinmaydigan ko‘priklar, identifikatsiya serverlari yoki xizmatlari
```suggestion - Uchinchi shaxslar boshqaradigan boshqa Matrix uy serverlari - Uzinfocom tomonidan bevosita nazorat qilinmaydigan ko‘priklar, identifikatsiya serverlari yoki xizmatlari ```
bahrom04 (Migrated from github.com) commented 2026-02-25 09:52:38 +00:00
Uzinfocom — O‘zbekiston Respublikasidagi davlat AyTi infratuzilmasi provayderi boʻlib, uchar.uz orqali ko‘rsatiladigan xizmatlar uchun maʼlumotlar nazoratchisi hisoblanadi.
```suggestion Uzinfocom — O‘zbekiston Respublikasidagi davlat AyTi infratuzilmasi provayderi boʻlib, uchar.uz orqali ko‘rsatiladigan xizmatlar uchun maʼlumotlar nazoratchisi hisoblanadi. ```
bahrom04 (Migrated from github.com) commented 2026-02-25 09:53:11 +00:00
## 4. Biz qanday maʼlumotlarni yigʻamiz
```suggestion ## 4. Biz qanday maʼlumotlarni yigʻamiz ```
bahrom04 (Migrated from github.com) commented 2026-02-25 09:53:35 +00:00
a) Siz taqdim etadigan maʼlumotlar
```suggestion a) Siz taqdim etadigan maʼlumotlar ```
bahrom04 (Migrated from github.com) commented 2026-02-25 09:54:01 +00:00
- Foydalanuvchi nomi, ismi va avatari
```suggestion - Foydalanuvchi nomi, ismi va avatari ```
bahrom04 (Migrated from github.com) commented 2026-02-25 09:55:15 +00:00
- Parol (xavfsiz hashing va salting orqali saqlangan)
```suggestion - Parol (xavfsiz hashing va salting orqali saqlangan) ```
bahrom04 (Migrated from github.com) commented 2026-02-25 09:56:56 +00:00
- IP manzil (qonunbuzarlikning oldini olish uchun vaqtincha saqlanadi)
```suggestion - IP manzil (qonunbuzarlikning oldini olish uchun vaqtincha saqlanadi) ```
bahrom04 (Migrated from github.com) commented 2026-02-25 09:57:28 +00:00
- Uchrashuvdagi ishtirok metamaʼlumotlari (masalan, qo‘ng‘iroqqa qo‘shilganingizda)
```suggestion - Uchrashuvdagi ishtirok metamaʼlumotlari (masalan, qo‘ng‘iroqqa qo‘shilganingizda) ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:07:41 +00:00
- Barcha shaxsiy xabarlar va media fayllar Matrixʼning Olm/Megolm protokollari yordamida oxirigacha shifrlangan.
- Uzinfocom xabarlarni ochish yoki ularga kirish imkoniga ega emas.
```suggestion - Barcha shaxsiy xabarlar va media fayllar Matrixʼning Olm/Megolm protokollari yordamida oxirigacha shifrlangan. - Uzinfocom xabarlarni ochish yoki ularga kirish imkoniga ega emas. ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:08:04 +00:00
## 5. Nima uchun biz bu maʼlumotlarni yigʻamiz
```suggestion ## 5. Nima uchun biz bu maʼlumotlarni yigʻamiz ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:12:24 +00:00
- Xavfsiz muloqotni taʼminlash uchun
```suggestion - Xavfsiz muloqotni taʼminlash uchun ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:20:47 +00:00
- Platforma barqarorligini kuzatish, suiste’molchilikning oldini olish va firibgarlikni aniqlash uchun
```suggestion - Platforma barqarorligini kuzatish, suiste’molchilikning oldini olish va firibgarlikni aniqlash uchun ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:22:21 +00:00
Sizning faoliyatingizni marketing yoki reklama maqsadlarida kuzatmaymiz. Sizning maʼlumotlaringizni uchinchi tomonlarga sotmaymiz yoki ulashmaymiz.
```suggestion Sizning faoliyatingizni marketing yoki reklama maqsadlarida kuzatmaymiz. Sizning maʼlumotlaringizni uchinchi tomonlarga sotmaymiz yoki ulashmaymiz. ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:30:27 +00:00
- Uzinfocom uchinchi tomon uy serverlari maʼlumotlarni qanday qayta ishlashini nazorat qila olmaydi
```suggestion - Uzinfocom uchinchi tomon uy serverlari maʼlumotlarni qanday qayta ishlashini nazorat qila olmaydi ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:30:48 +00:00
Ishonchli Matrix uy serverlari bilan federatsiyalashishni tavsiya qilamiz.
```suggestion Ishonchli Matrix uy serverlari bilan federatsiyalashishni tavsiya qilamiz. ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:32:25 +00:00
- Seans maʼlumotlari va jurnallari operativ va xavfsizlik maqsadlarida 180 kungacha saqlanadi.
- Agar o‘chirib yubormasangiz, shifrlangan xabarlar tarixi hisobingiz mavjud bo‘lgunicha saqlanadi.
- Hisobingizni istalgan vaqtda o‘chirishingiz mumkin, bu sizning profilingizni, kirish maʼlumotlaringizni va uchar.uz manzilidagi mahalliy xabar tarixingizni o‘chiradi.
```suggestion - Seans maʼlumotlari va jurnallari operativ va xavfsizlik maqsadlarida 180 kungacha saqlanadi. - Agar o‘chirib yubormasangiz, shifrlangan xabarlar tarixi hisobingiz mavjud bo‘lgunicha saqlanadi. - Hisobingizni istalgan vaqtda o‘chirishingiz mumkin, bu sizning profilingizni, kirish maʼlumotlaringizni va uchar.uz manzilidagi mahalliy xabar tarixingizni o‘chiradi. ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:32:50 +00:00
Uzinfocom sizning maʼlumotlaringizni himoya qilish uchun kuchli texnik va tashkiliy choralarni amalga oshiradi:
```suggestion Uzinfocom sizning maʼlumotlaringizni himoya qilish uchun kuchli texnik va tashkiliy choralarni amalga oshiradi: ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:33:18 +00:00
- Serverlar muntazam nazorat qilinadi va yangilanadi
```suggestion - Serverlar muntazam nazorat qilinadi va yangilanadi ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:34:12 +00:00
Uchar 16 yoshga to‘lmagan foydalanuvchilarning ota-ona roziligisiz foydalanishi uchun mo‘ljallanmagan. Biz bolalardan shaxsiy maʼlumotlarni bila turib yig‘maymiz.
```suggestion Uchar 16 yoshga to‘lmagan foydalanuvchilarning ota-ona roziligisiz foydalanishi uchun mo‘ljallanmagan. Biz bolalardan shaxsiy maʼlumotlarni bila turib yig‘maymiz. ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:38:10 +00:00
Biz maʼlumotlaringizni faqat qonun, sud qarori yoki jamoat xavfsizligiga tahdidlarning oldini olish uchun zarur bo‘lgandagina oshkor qilamiz. Biz hech qanday holatda boshidan oxirigacha shifrlangan kontentga kirmaymiz yoki ulashmaymiz.
```suggestion Biz maʼlumotlaringizni faqat qonun, sud qarori yoki jamoat xavfsizligiga tahdidlarning oldini olish uchun zarur bo‘lgandagina oshkor qilamiz. Biz hech qanday holatda boshidan oxirigacha shifrlangan kontentga kirmaymiz yoki ulashmaymiz. ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:38:48 +00:00
- Maʼlumotlaringizdan foydalanish
- Maʼlumotlaringizni tuzatish yoki o‘chirishni so‘rash
- Ba'zi hollarda ma'lumotlaringizni qayta ishlashga qarshi chiqish
- Maʼlumotlaringizni boshqa Matrix tarmog‘iga ko‘chirish
- Ixtiyoriy ma'lumotlardan foydalanish uchun roziligingizni bekor qilish
```suggestion - Maʼlumotlaringizdan foydalanish - Maʼlumotlaringizni tuzatish yoki o‘chirishni so‘rash - Ba'zi hollarda ma'lumotlaringizni qayta ishlashga qarshi chiqish - Maʼlumotlaringizni boshqa Matrix tarmog‘iga ko‘chirish - Ixtiyoriy ma'lumotlardan foydalanish uchun roziligingizni bekor qilish ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:39:09 +00:00
## 14. Bog‘lanish uchun maʼlumotlar
```suggestion ## 14. Bog‘lanish uchun maʼlumotlar ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:39:17 +00:00
- Vebsayt: https://uchar.uz
```suggestion - Vebsayt: https://uchar.uz ```
@ -84,3 +83,3 @@
Uzinfocom implements strong technical and organizational measures to protect your data:
Uzinfocom sizning maʼlumotlaringizni himoya qilish uchun kuchli texnik va tashkiliy choralarni amalga oshiradi:
bahrom04 (Migrated from github.com) commented 2026-02-25 10:49:50 +00:00
Ma’lumotlarni quyidagi maqsadlarda olamiz va qayta ishlaymiz:
```suggestion Ma’lumotlarni quyidagi maqsadlarda olamiz va qayta ishlaymiz: ```
@ -7,7 +7,7 @@ export function CallToAction() {
return (
bahrom04 (Migrated from github.com) commented 2026-02-25 10:41:04 +00:00
            oling, hisobingizni yarating va ma{"ʼ"}lumotlaringiz o‘zingizniki
```suggestion oling, hisobingizni yarating va ma{"ʼ"}lumotlaringiz o‘zingizniki ```
@ -3,53 +3,53 @@ import { Container } from '@/components/Container'
const faqs = [
bahrom04 (Migrated from github.com) commented 2026-02-25 10:41:41 +00:00
      question: "Maʼlumotlarim biror marta sotilganmi yoki kuzatilganmi?",
answer:
        "Hech qachon. Maʼlumotlaringiz shifrlangan va hech qachon ulashilmaydi yoki monetizatsiya qilinmaydi. Biz foydalanish xatti-harakatlarini kuzatmaymiz yoki tashqi tahlillarni kiritmaymiz.",
```suggestion question: "Maʼlumotlarim biror marta sotilganmi yoki kuzatilganmi?", answer: "Hech qachon. Maʼlumotlaringiz shifrlangan va hech qachon ulashilmaydi yoki monetizatsiya qilinmaydi. Biz foydalanish xatti-harakatlarini kuzatmaymiz yoki tashqi tahlillarni kiritmaymiz.", ```
@ -68,3 +68,3 @@
className="text-3xl font-medium tracking-tight text-gray-900"
>
Frequently asked questions
Tez-tez beriladigan savollar
bahrom04 (Migrated from github.com) commented 2026-02-25 10:43:06 +00:00
        "An'anaviy messenjerlardan farqli o‘laroq, Matrix markazlashtirilmagan — sizning suhbatlaringizni boshqaradigan markaziy server yo‘q. U federatsiyani qo‘llab-quvvatlaydi, shuning uchun har kim o‘z serverini ishga tushirishi va boshqalarga ulanishi mumkin. Bundan tashqari, hamma narsa boshidan oxirigacha shifrlangan, kengaytiriladigan va ochiq kodli - na devor bilan o‘ralgan bog‘lar, na kuzatuv kapitalizmi mavjud.",
```suggestion "An'anaviy messenjerlardan farqli o‘laroq, Matrix markazlashtirilmagan — sizning suhbatlaringizni boshqaradigan markaziy server yo‘q. U federatsiyani qo‘llab-quvvatlaydi, shuning uchun har kim o‘z serverini ishga tushirishi va boshqalarga ulanishi mumkin. Bundan tashqari, hamma narsa boshidan oxirigacha shifrlangan, kengaytiriladigan va ochiq kodli - na devor bilan o‘ralgan bog‘lar, na kuzatuv kapitalizmi mavjud.", ```
@ -20,3 +26,3 @@
<p className="mt-1 text-sm">Feel your own ether.</p>
<p className="mt-1 text-sm">O`z efiringizni kashf eting.</p>
</div>
</div>
bahrom04 (Migrated from github.com) commented 2026-02-25 10:43:32 +00:00
                <p className="mt-1 text-sm">Oʻz efiringizni kashf eting.</p>
```suggestion <p className="mt-1 text-sm">Oʻz efiringizni kashf eting.</p> ```
@ -107,12 +107,14 @@ export function Hero() {
<div className="lg:grid lg:grid-cols-12 lg:gap-x-8 lg:gap-y-20">
bahrom04 (Migrated from github.com) commented 2026-02-25 10:44:10 +00:00
              Hamjamiyatlarni kuchaytirish va ma{"ʼ"}lumotlaringizni himoya
```suggestion Hamjamiyatlarni kuchaytirish va ma{"ʼ"}lumotlaringizni himoya ```
@ -38,23 +38,23 @@ interface CustomAnimationProps {
bahrom04 (Migrated from github.com) commented 2026-02-25 10:44:39 +00:00
      "Suhbatlaringiz begona serverga tegishli emas. Matrix yordamida maʼlumotlaringiz o‘z-o‘zini boshqarish, federatsiya qilish yoki ishonchli nusxalarga qo‘shilish kabi shartlar asosida saqlanadi. Markaziy hokimiyat yo‘q. Sotuvchi qulfi yo‘q.",
```suggestion "Suhbatlaringiz begona serverga tegishli emas. Matrix yordamida maʼlumotlaringiz o‘z-o‘zini boshqarish, federatsiya qilish yoki ishonchli nusxalarga qo‘shilish kabi shartlar asosida saqlanadi. Markaziy hokimiyat yo‘q. Sotuvchi qulfi yo‘q.", ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:48:10 +00:00
      'Xabarlar, ovozli qo‘ng‘iroqlar, video — barchasi Olm va Megolm kabi eng so‘nggi protokollar bilan shifrlangan. Yakkama-yakka suhbatlashayotganingizda ham, global xonalarda hamkorlik qilayotganingizda ham muloqotingiz maxfiy qoladi.',
```suggestion 'Xabarlar, ovozli qo‘ng‘iroqlar, video — barchasi Olm va Megolm kabi eng so‘nggi protokollar bilan shifrlangan. Yakkama-yakka suhbatlashayotganingizda ham, global xonalarda hamkorlik qilayotganingizda ham muloqotingiz maxfiy qoladi.', ```
bahrom04 (Migrated from github.com) commented 2026-02-25 10:48:45 +00:00
            Bu platformani kuzatuv, monetizatsiya yoki senzuraga uchrashni
```suggestion Bu platformani kuzatuv, monetizatsiya yoki senzuraga uchrashni ```
@ -4,39 +4,39 @@ import { Container } from '@/components/Container'
bahrom04 (Migrated from github.com) commented 2026-02-25 10:49:03 +00:00
      "Xona faolligi, xabarlar hajmi, server holati va federatsiya ulanishlarini maxfiylikni saqlagan holda kuzatib boring. Sizga imkoniyat beruvchi tahliliy maʼlumotlar.",
```suggestion "Xona faolligi, xabarlar hajmi, server holati va federatsiya ulanishlarini maxfiylikni saqlagan holda kuzatib boring. Sizga imkoniyat beruvchi tahliliy maʼlumotlar.", ```
bahrom04 (Migrated from github.com) requested changes 2026-02-25 10:53:08 +00:00
bahrom04 (Migrated from github.com) left a comment

mana

mana
orzklv commented 2026-02-26 03:17:25 +00:00 (Migrated from github.com)

2 ta qolib ketgan reviewni boshqa PR qilib yoborilar, hozircha merge qilib turaman, menga kerak hozir bu o'zgarishlar tezda. @xelopsys

2 ta qolib ketgan reviewni boshqa PR qilib yoborilar, hozircha merge qilib turaman, menga kerak hozir bu o'zgarishlar tezda. @xelopsys
Sign in to join this conversation.
No description provided.