Skip to content

Commit f58ccfd

Browse files
committed
Update BridgeX to Bridgex
1 parent eb1fc5e commit f58ccfd

21 files changed

Lines changed: 170 additions & 170 deletions

File tree

website/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# BridgeX Website
1+
# Bridgex Website
22

3-
The official website for BridgeX - an open-source graphical interface for converting files to Markdown.
3+
The official website for Bridgex - an open-source graphical interface for converting files to Markdown.
44

55
## Features
66

@@ -15,7 +15,7 @@ The official website for BridgeX - an open-source graphical interface for conver
1515
- **Home**: Landing page with features, screenshots, and CTA
1616
- **Downloads**: Platform-specific download options (Windows .exe, pip install)
1717
- **Documentation**: Installation guides, usage instructions, troubleshooting
18-
- **About**: Project information, what BridgeX does and doesn't do
18+
- **About**: Project information, what Bridgex does and doesn't do
1919
- **Licenses**: Third-party license information (Markitdown, PySide6, etc.)
2020

2121
## Tech Stack
@@ -129,7 +129,7 @@ website/
129129

130130
## Color Palette
131131

132-
Colors extracted from the BridgeX logo:
132+
Colors extracted from the Bridgex logo:
133133

134134
| Color | Hex | Usage |
135135
|-------|-----|-------|

website/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/webp" href="https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/logos/bridgex-v0.1.0.webp" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<meta name="description" content="BridgeX - An open-source graphical interface for converting files to Markdown, built in Python with PySide6. Convert PDF, DOCX, PPTX, XLSX, HTML, ePub, and many more formats to Markdown." />
7+
<meta name="description" content="Bridgex - An open-source graphical interface for converting files to Markdown, built in Python with PySide6. Convert PDF, DOCX, PPTX, XLSX, HTML, ePub, and many more formats to Markdown." />
88
<meta name="keywords" content="bridgex, markdown, converter, pdf to markdown, docx to markdown, file converter, pyside6, markitdown, open source" />
99
<meta name="author" content="Dev2Forge" />
10-
<meta property="og:title" content="BridgeX - Your Bridge to Markdown" />
10+
<meta property="og:title" content="Bridgex - Your Bridge to Markdown" />
1111
<meta property="og:description" content="An open-source graphical interface for converting files to Markdown." />
1212
<meta property="og:image" content="https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/logos/bridgex-v0.1.0.webp" />
1313
<meta property="og:type" content="website" />
1414
<meta name="twitter:card" content="summary_large_image" />
1515
<link rel="preconnect" href="https://fonts.googleapis.com">
1616
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1717
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
18-
<title>BridgeX - Your Bridge to Markdown</title>
18+
<title>Bridgex - Your Bridge to Markdown</title>
1919

2020
<!-- Google tag (gtag.js) -->
2121
<script async src="https://www.googletagmanager.com/gtag/js?id=G-427882P3Y7"></script>

website/src/components/layout/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ export default function Footer() {
1515
<div className="footer-content">
1616
<div className="footer-brand">
1717
<Link to="/" className="footer-logo-link">
18-
<img src={LOGO_URL} alt="BridgeX" className="footer-logo" />
19-
<span className="footer-title">BridgeX</span>
18+
<img src={LOGO_URL} alt="Bridgex" className="footer-logo" />
19+
<span className="footer-title">Bridgex</span>
2020
</Link>
2121
<p className="footer-description">
2222
{t('hero.subtitle')}

website/src/components/layout/Navbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ export default function Navbar() {
103103
<nav className={`navbar ${isScrolled ? 'scrolled' : ''}`}>
104104
<div className="navbar-container">
105105
<NavLink to="/" className="navbar-brand">
106-
<img src={LOGO_URL} alt="BridgeX Logo" className="navbar-logo" />
107-
<span className="navbar-title">BridgeX</span>
106+
<img src={LOGO_URL} alt="Bridgex Logo" className="navbar-logo" />
107+
<span className="navbar-title">Bridgex</span>
108108
</NavLink>
109109

110110
<div className={`navbar-menu ${isMenuOpen ? 'open' : ''}`}>

website/src/components/sections/CTASection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function CTASection() {
1313
<div className="cta-content">
1414
<h2 className="cta-title">Ready to convert your files?</h2>
1515
<p className="cta-description">
16-
Download BridgeX today and start converting your documents to Markdown with ease.
16+
Download Bridgex today and start converting your documents to Markdown with ease.
1717
</p>
1818
<div className="cta-buttons">
1919
<Link to="/downloads" className="btn btn-primary">

website/src/components/sections/HeroSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export default function HeroSection() {
6464
<div className="hero-logo-container">
6565
<img
6666
src={LOGO_URL}
67-
alt="BridgeX Logo"
67+
alt="Bridgex Logo"
6868
className="hero-logo animate-float"
6969
/>
7070
<div className="hero-glow" />

website/src/components/sections/ScreenshotsSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default function ScreenshotsSection() {
4141
<div className="container">
4242
<div className="section-title">
4343
<h2>Screenshots</h2>
44-
<p>See BridgeX in action</p>
44+
<p>See Bridgex in action</p>
4545
</div>
4646

4747
<div className="screenshots-carousel">

website/src/data/licenses.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Third-party licenses configuration for BridgeX
2+
* Third-party licenses configuration for Bridgex
33
* This file contains all license information for dependencies used in the project
44
*/
55

@@ -16,7 +16,7 @@ export interface License {
1616
export const licenses: License[] = [
1717
{
1818
key: 'bridgex',
19-
name: 'BridgeX',
19+
name: 'Bridgex',
2020
version: '0.1.0',
2121
license: 'MIT License',
2222
copyright: '© 2025 Dev2Forge',

website/src/i18n/locales/ar.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"licenses": "التراخيص"
88
},
99
"hero": {
10-
"title": "BridgeX",
10+
"title": "Bridgex",
1111
"subtitle": "جسرك إلى Markdown",
1212
"description": "واجهة رسومية مفتوحة المصدر لتحويل الملفات إلى Markdown، مبنية ببايثون و PySide6. بسِّط سير عملك بقوة Markitdown.",
1313
"cta": {
@@ -44,7 +44,7 @@
4444
},
4545
"downloads": {
4646
"title": "التنزيلات",
47-
"subtitle": "احصل على BridgeX لمنصتك",
47+
"subtitle": "احصل على Bridgex لمنصتك",
4848
"windows": {
4949
"title": "Windows",
5050
"description": "نزّل المُثبّت (.exe) لـ Windows 64-بت. يشمل جميع الاعتمادات.",
@@ -72,22 +72,22 @@
7272
},
7373
"documentation": {
7474
"title": "التوثيق",
75-
"subtitle": "تعلّم كيفية استخدام BridgeX",
75+
"subtitle": "تعلّم كيفية استخدام Bridgex",
7676
"installation": {
7777
"title": "التثبيت",
7878
"pip": {
7979
"title": "التثبيت عبر pip",
8080
"step1": "تأكّد من تثبيت Python 3.9-3.13",
8181
"step2": "أنشئ وفعّل بيئة افتراضية (موصى بها):",
82-
"step3": "ثبّت BridgeX:",
83-
"step4": "شغّل BridgeX:"
82+
"step3": "ثبّت Bridgex:",
83+
"step4": "شغّل Bridgex:"
8484
},
8585
"windows": {
8686
"title": "التثبيت على Windows",
8787
"step1": "نزّل المُثبّت من صفحة التنزيلات",
8888
"step2": "شغّل المُثبّت كمسؤول",
8989
"step3": "اتبع معالج التثبيت",
90-
"step4": "سيتم تثبيت BridgeX في Program Files"
90+
"step4": "سيتم تثبيت Bridgex في Program Files"
9191
}
9292
},
9393
"troubleshooting": {
@@ -111,7 +111,7 @@
111111
},
112112
"usage": {
113113
"title": "الاستخدام الأساسي",
114-
"step1": "شغّل BridgeX من الطرفية أو الاختصار المثبّت",
114+
"step1": "شغّل Bridgex من الطرفية أو الاختصار المثبّت",
115115
"step2": "انقر زر الرفع لاختيار ملف للتحويل",
116116
"step3": "سيتم تحويل الملف تلقائيًا إلى Markdown",
117117
"step4": "راجع النتيجة وعدّلها في المحرر المدمج",
@@ -138,11 +138,11 @@
138138
}
139139
},
140140
"about": {
141-
"title": "حول BridgeX",
141+
"title": "حول Bridgex",
142142
"subtitle": "جسر بصري للتحويل إلى Markdown",
143-
"description": "BridgeX هو واجهة رسومية مفتوحة المصدر تُبسط تحويل الملفات إلى Markdown. مبني على مكتبة Markitdown من Microsoft ويقدم تجربة بصرية بديهية لمن لا يفضّلون سطر الأوامر.",
143+
"description": "Bridgex هو واجهة رسومية مفتوحة المصدر تُبسط تحويل الملفات إلى Markdown. مبني على مكتبة Markitdown من Microsoft ويقدم تجربة بصرية بديهية لمن لا يفضّلون سطر الأوامر.",
144144
"whatItDoes": {
145-
"title": "ما يفعله BridgeX",
145+
"title": "ما يفعله Bridgex",
146146
"items": [
147147
"يحوّل صيغ ملفات مختلفة إلى Markdown نظيف",
148148
"يوفر واجهة رسومية لـ Markitdown",
@@ -152,7 +152,7 @@
152152
]
153153
},
154154
"whatItDoesNot": {
155-
"title": "ما لا يفعله BridgeX",
155+
"title": "ما لا يفعله Bridgex",
156156
"items": [
157157
"ليس IDE أو محرر نصوص متقدم",
158158
"ليس محرر Markdown مع معاينة حية",
@@ -162,8 +162,8 @@
162162
]
163163
},
164164
"whyLarge": {
165-
"title": "لماذا حجم BridgeX كبير؟",
166-
"description": "يبلغ حجم BridgeX (90-120 ميجابايت للمُثبّت) لأنه يضم:",
165+
"title": "لماذا حجم Bridgex كبير؟",
166+
"description": "يبلغ حجم Bridgex (90-120 ميجابايت للمُثبّت) لأنه يضم:",
167167
"items": [
168168
"PySide6 (Qt for Python) - إطار GUI كامل",
169169
"Markitdown مع إضافات الصيغ - تحليل المستندات",
@@ -184,9 +184,9 @@
184184
},
185185
"licenses": {
186186
"title": "تراخيص الجهات الأخرى",
187-
"subtitle": "BridgeX يستخدم المكتبات مفتوحة المصدر التالية",
187+
"subtitle": "Bridgex يستخدم المكتبات مفتوحة المصدر التالية",
188188
"bridgex": {
189-
"title": "BridgeX",
189+
"title": "Bridgex",
190190
"license": "ترخيص MIT",
191191
"copyright": "© 2025 Dev2Forge"
192192
},

website/src/i18n/locales/de.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"licenses": "Lizenzen"
88
},
99
"hero": {
10-
"title": "BridgeX",
10+
"title": "Bridgex",
1111
"subtitle": "Ihre Brücke zu Markdown",
1212
"description": "Eine Open-Source-Oberfläche zur Konvertierung von Dateien in Markdown, gebaut in Python mit PySide6. Vereinfachen Sie Ihren Workflow mit der Leistung von Markitdown.",
1313
"cta": {
@@ -44,7 +44,7 @@
4444
},
4545
"downloads": {
4646
"title": "Downloads",
47-
"subtitle": "Holen Sie sich BridgeX für Ihre Plattform",
47+
"subtitle": "Holen Sie sich Bridgex für Ihre Plattform",
4848
"windows": {
4949
"title": "Windows",
5050
"description": "Laden Sie den Installer (.exe) für Windows 64-Bit herunter. Enthält alle Abhängigkeiten.",
@@ -72,22 +72,22 @@
7272
},
7373
"documentation": {
7474
"title": "Dokumentation",
75-
"subtitle": "Erfahren Sie, wie Sie BridgeX nutzen",
75+
"subtitle": "Erfahren Sie, wie Sie Bridgex nutzen",
7676
"installation": {
7777
"title": "Installation",
7878
"pip": {
7979
"title": "Installation über pip",
8080
"step1": "Stellen Sie sicher, dass Python 3.9-3.13 installiert ist",
8181
"step2": "Erstellen und aktivieren Sie ein virtuelles Environment (empfohlen):",
82-
"step3": "Installieren Sie BridgeX:",
83-
"step4": "Starten Sie BridgeX:"
82+
"step3": "Installieren Sie Bridgex:",
83+
"step4": "Starten Sie Bridgex:"
8484
},
8585
"windows": {
8686
"title": "Installation unter Windows",
8787
"step1": "Laden Sie den Installer von der Downloads-Seite herunter",
8888
"step2": "Führen Sie den Installer als Administrator aus",
8989
"step3": "Folgen Sie dem Installationsassistenten",
90-
"step4": "BridgeX wird in Program Files installiert"
90+
"step4": "Bridgex wird in Program Files installiert"
9191
}
9292
},
9393
"troubleshooting": {
@@ -111,7 +111,7 @@
111111
},
112112
"usage": {
113113
"title": "Grundlegende Nutzung",
114-
"step1": "Starten Sie BridgeX über das Terminal oder die installierte Verknüpfung",
114+
"step1": "Starten Sie Bridgex über das Terminal oder die installierte Verknüpfung",
115115
"step2": "Klicken Sie auf den Upload-Button, um eine Datei zur Konvertierung auszuwählen",
116116
"step3": "Die Datei wird automatisch in Markdown konvertiert",
117117
"step4": "Prüfen und bearbeiten Sie das Ergebnis im integrierten Editor",
@@ -138,11 +138,11 @@
138138
}
139139
},
140140
"about": {
141-
"title": "Über BridgeX",
141+
"title": "Über Bridgex",
142142
"subtitle": "Eine visuelle Brücke zur Markdown-Konvertierung",
143-
"description": "BridgeX ist eine Open-Source-Oberfläche, die die Konvertierung von Dateien in Markdown vereinfacht. Basierend auf Microsofts Markitdown-Bibliothek bietet sie eine intuitive visuelle Erfahrung für Nutzer, die keine Befehlszeile nutzen möchten.",
143+
"description": "Bridgex ist eine Open-Source-Oberfläche, die die Konvertierung von Dateien in Markdown vereinfacht. Basierend auf Microsofts Markitdown-Bibliothek bietet sie eine intuitive visuelle Erfahrung für Nutzer, die keine Befehlszeile nutzen möchten.",
144144
"whatItDoes": {
145-
"title": "Was BridgeX macht",
145+
"title": "Was Bridgex macht",
146146
"items": [
147147
"Konvertiert verschiedene Dateiformate in sauberes Markdown",
148148
"Bietet eine grafische Oberfläche für Markitdown",
@@ -152,7 +152,7 @@
152152
]
153153
},
154154
"whatItDoesNot": {
155-
"title": "Was BridgeX NICHT macht",
155+
"title": "Was Bridgex NICHT macht",
156156
"items": [
157157
"Kein IDE oder fortgeschrittener Texteditor",
158158
"Kein Markdown-Editor mit Live-Vorschau",
@@ -162,8 +162,8 @@
162162
]
163163
},
164164
"whyLarge": {
165-
"title": "Warum ist BridgeX groß?",
166-
"description": "BridgeX hat eine beträchtliche Größe (90-120 MB für den Installer), weil es bündelt:",
165+
"title": "Warum ist Bridgex groß?",
166+
"description": "Bridgex hat eine beträchtliche Größe (90-120 MB für den Installer), weil es bündelt:",
167167
"items": [
168168
"PySide6 (Qt for Python) - Vollständiges GUI-Framework",
169169
"Markitdown mit Format-Plugins - Dokumentenverarbeitung",
@@ -184,9 +184,9 @@
184184
},
185185
"licenses": {
186186
"title": "Lizenzen von Drittanbietern",
187-
"subtitle": "BridgeX nutzt folgende Open-Source-Bibliotheken",
187+
"subtitle": "Bridgex nutzt folgende Open-Source-Bibliotheken",
188188
"bridgex": {
189-
"title": "BridgeX",
189+
"title": "Bridgex",
190190
"license": "MIT-Lizenz",
191191
"copyright": "© 2025 Dev2Forge"
192192
},

0 commit comments

Comments
 (0)