Skip to content

Commit 507ed6d

Browse files
committed
Index projects 202508052054
Signed-off-by: mehmetdizdas <mehmetdizdas@outlook.com>
1 parent 40aada2 commit 507ed6d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+10184
-2678
lines changed

projects/BlackHatDevX/contactapp/README-ar.html

Lines changed: 305 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,305 @@
1+
<!DOCTYPE html>
2+
<html lang="ar">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>contactapp - A contacts application built with React, TypeScript, and Tailwind CSS.</title>
7+
<meta name="description" content="A contacts application built with React, TypeScript, and Tailwind CSS.">
8+
<meta name="keywords" content="contactapp, Arabic, documentation, GitHub, open source">
9+
<meta name="author" content="OpenAiTx">
10+
<meta name="robots" content="index, follow">
11+
12+
<!-- Structured Data -->
13+
<script type="application/ld+json">
14+
{
15+
"@context": "https://schema.org",
16+
"@type": "SoftwareApplication",
17+
"name": "contactapp",
18+
"description": "A contacts application built with React, TypeScript, and Tailwind CSS.",
19+
"author": {
20+
"@type": "Person",
21+
"name": "BlackHatDevX"
22+
},
23+
"applicationCategory": "DeveloperApplication",
24+
"operatingSystem": "Any",
25+
"offers": {
26+
"@type": "Offer",
27+
"price": "0",
28+
"priceCurrency": "USD"
29+
},
30+
"aggregateRating": {
31+
"@type": "AggregateRating",
32+
"ratingValue": "5",
33+
"ratingCount": 0
34+
},
35+
"url": "https://OpenAiTx.github.io/projects/BlackHatDevX/contactapp/README-ar.html",
36+
"sameAs": "https://raw.githubusercontent.com/BlackHatDevX/contactapp/main/readme.md",
37+
"datePublished": "2025-08-05",
38+
"dateModified": "2025-08-05"
39+
}
40+
</script>
41+
42+
<!-- GitHub-style CSS -->
43+
<style>
44+
* {
45+
margin: 0;
46+
padding: 0;
47+
box-sizing: border-box;
48+
}
49+
50+
body {
51+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
52+
line-height: 1.6;
53+
color: #24292e;
54+
background-color: #ffffff;
55+
max-width: 980px;
56+
margin: 0 auto;
57+
padding: 20px;
58+
}
59+
60+
.container {
61+
background: #ffffff;
62+
border: 1px solid #e1e4e8;
63+
border-radius: 6px;
64+
padding: 24px;
65+
margin-bottom: 20px;
66+
}
67+
68+
.header {
69+
border-bottom: 1px solid #e1e4e8;
70+
padding-bottom: 16px;
71+
margin-bottom: 24px;
72+
}
73+
74+
.project-title {
75+
font-size: 2em;
76+
font-weight: 600;
77+
margin-bottom: 8px;
78+
}
79+
80+
.project-title a {
81+
color: #24292e;
82+
text-decoration: none;
83+
display: inline-flex;
84+
align-items: center;
85+
gap: 8px;
86+
transition: color 0.2s ease;
87+
}
88+
89+
.project-title a:hover {
90+
color: #0366d6;
91+
text-decoration: none;
92+
}
93+
94+
.project-title .github-icon {
95+
width: 1em;
96+
height: 1em;
97+
fill: currentColor;
98+
opacity: 0.7;
99+
transition: opacity 0.2s ease;
100+
}
101+
102+
.project-title a:hover .github-icon {
103+
opacity: 1;
104+
}
105+
106+
.project-meta {
107+
color: #586069;
108+
font-size: 14px;
109+
margin-bottom: 16px;
110+
}
111+
112+
.stars {
113+
display: inline-block;
114+
margin-right: 16px;
115+
}
116+
117+
.language {
118+
display: inline-block;
119+
background-color: #f1f8ff;
120+
color: #0366d6;
121+
padding: 2px 8px;
122+
border-radius: 3px;
123+
font-size: 12px;
124+
font-weight: 500;
125+
}
126+
127+
.content {
128+
font-size: 16px;
129+
line-height: 1.6;
130+
}
131+
132+
h1, h2, h3, h4, h5, h6 {
133+
margin-top: 24px;
134+
margin-bottom: 16px;
135+
font-weight: 600;
136+
line-height: 1.25;
137+
color: #24292e;
138+
}
139+
140+
h1 { font-size: 2em; border-bottom: 1px solid #eaecef; padding-bottom: 0.3em; }
141+
h2 { font-size: 1.5em; border-bottom: 1px solid #eaecef; padding-bottom: 0.3em; }
142+
h3 { font-size: 1.25em; }
143+
144+
p {
145+
margin-bottom: 16px;
146+
}
147+
148+
code {
149+
background-color: #f6f8fa;
150+
border-radius: 3px;
151+
font-size: 85%;
152+
margin: 0;
153+
padding: 0.2em 0.4em;
154+
font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
155+
}
156+
157+
pre {
158+
background-color: #f6f8fa;
159+
border-radius: 6px;
160+
font-size: 85%;
161+
line-height: 1.45;
162+
overflow: auto;
163+
padding: 16px;
164+
margin-bottom: 16px;
165+
}
166+
167+
pre code {
168+
background-color: transparent;
169+
border: 0;
170+
display: inline;
171+
line-height: inherit;
172+
margin: 0;
173+
overflow: visible;
174+
padding: 0;
175+
word-wrap: normal;
176+
}
177+
178+
a {
179+
color: #0366d6;
180+
text-decoration: none;
181+
}
182+
183+
a:hover {
184+
text-decoration: underline;
185+
}
186+
187+
ul, ol {
188+
margin-bottom: 16px;
189+
padding-left: 2em;
190+
}
191+
192+
li {
193+
margin-bottom: 0.25em;
194+
}
195+
196+
blockquote {
197+
border-left: 4px solid #dfe2e5;
198+
color: #6a737d;
199+
margin: 0 0 16px 0;
200+
padding: 0 1em;
201+
}
202+
203+
.footer {
204+
margin-top: 40px;
205+
padding-top: 20px;
206+
border-top: 1px solid #e1e4e8;
207+
color: #586069;
208+
font-size: 14px;
209+
text-align: center;
210+
}
211+
212+
.footer a {
213+
color: #0366d6;
214+
}
215+
216+
.original-link {
217+
margin-top: 16px;
218+
padding: 12px;
219+
background-color: #f6f8fa;
220+
border-radius: 6px;
221+
border: 1px solid #e1e4e8;
222+
}
223+
224+
@media (max-width: 768px) {
225+
body {
226+
padding: 10px;
227+
}
228+
229+
.container {
230+
padding: 16px;
231+
}
232+
233+
.project-title {
234+
font-size: 1.5em;
235+
}
236+
}
237+
</style>
238+
239+
<!-- Prism.js for syntax highlighting -->
240+
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" rel="stylesheet">
241+
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-core.min.js"></script>
242+
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/plugins/autoloader/prism-autoloader.min.js"></script>
243+
244+
<!-- Bing Count -->
245+
<script type="text/javascript">
246+
(function(c,l,a,r,i,t,y){
247+
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
248+
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
249+
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
250+
})(window, document, "clarity", "script", "sh95yd6uwt");
251+
</script>
252+
253+
<!-- Statcounter -->
254+
<script type="text/javascript">
255+
var sc_project = 13142514;
256+
var sc_invisible = 1;
257+
var sc_security = "d03a31d8";
258+
</script>
259+
<script type="text/javascript" src="https://www.statcounter.com/counter/counter.js" async></script>
260+
<noscript>
261+
<div class="statcounter"><a title="Web Analytics" href="https://statcounter.com/" target="_blank"><img
262+
class="statcounter" src="https://c.statcounter.com/13142514/0/d03a31d8/1/" alt="Web Analytics"
263+
referrerPolicy="no-referrer-when-downgrade"></a></div>
264+
</noscript>
265+
</head>
266+
<body>
267+
<div class="container">
268+
<div class="header">
269+
<h1 class="project-title">
270+
<a href="https://github.com/BlackHatDevX/contactapp" target="_blank" rel="noopener noreferrer">
271+
<svg class="github-icon" viewBox="0 0 16 16" aria-hidden="true">
272+
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path>
273+
</svg>
274+
contactapp
275+
</a>
276+
</h1>
277+
<div class="project-meta">
278+
<span class="stars">⭐ 0 stars</span>
279+
<span class="language">Arabic</span>
280+
<span>by BlackHatDevX</span>
281+
</div>
282+
</div>
283+
284+
<div class="content">
285+
<h2>سيتم إلغاء قفل اللغات الأخرى بعد استيراد OpenAiTx إلى المشروع</h2>
286+
287+
---
288+
289+
Tranlated By <a href="https://github.com/OpenAiTx/OpenAiTx" target="_blank" rel="noopener noreferrer">Open Ai Tx</a> | Last indexed: 2025-08-05
290+
291+
---</p>
292+
</div>
293+
294+
<div class="original-link">
295+
<strong>Original README:</strong> <a href="https://raw.githubusercontent.com/BlackHatDevX/contactapp/main/readme.md" target="_blank" rel="noopener noreferrer">View on GitHub</a>
296+
</div>
297+
</div>
298+
299+
<div class="footer">
300+
<p>Translated by <a href="https://github.com/OpenAiTx/OpenAiTx" target="_blank" rel="noopener noreferrer">OpenAiTx</a> |
301+
Last updated: 2025-08-05
302+
</div>
303+
304+
</body>
305+
</html>

0 commit comments

Comments
 (0)