Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
thecybernanny-webapp
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asranov0003
thecybernanny-webapp
Commits
9735b2dc
Commit
9735b2dc
authored
Jul 30, 2025
by
asranov0003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add cinfo download link icons
parent
496258f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
CInfo.css
src/components/CInfo/CInfo.css
+7
-0
CInfo.tsx
src/components/CInfo/CInfo.tsx
+7
-0
No files found.
src/components/CInfo/CInfo.css
0 → 100644
View file @
9735b2dc
.cinfo__download__link
{
display
:
flex
;
align-items
:
center
;
gap
:
0.5rem
;
color
:
var
(
--text-color
);
}
\ No newline at end of file
src/components/CInfo/CInfo.tsx
View file @
9735b2dc
import
React
from
"react"
;
import
"./CInfo.css"
;
import
CModal
from
"../CModal"
;
import
{
useTranslation
}
from
"react-i18next"
;
import
CButton
from
"../CButton"
;
import
{
FaApple
}
from
"react-icons/fa"
;
import
{
BsAndroid2
}
from
"react-icons/bs"
;
interface
CInfoProps
{
isOpen
:
boolean
;
...
...
@@ -50,16 +53,20 @@ const CInfo: React.FC<CInfoProps> = ({ isOpen, onToggle }) => {
href=
"https://apps.apple.com/uz/app/%D0%BA%D0%B8%D0%B1%D0%B5%D1%80%D0%BD%D1%8F%D0%BD%D1%8F/id6740760058"
target=
"_blank"
rel=
"noopener noreferrer"
className=
"cinfo__download__link"
>
{
t
(
"common.downloadForIos"
)
}
<
FaApple
/>
</
a
>
<
a
href=
"https://play.google.com/store/apps/details?id=com.thecybernanny.adroapp"
target=
"_blank"
rel=
"noopener noreferrer"
className=
"cinfo__download__link"
>
{
t
(
"common.downloadForAndroid"
)
}
<
BsAndroid2
/>
</
a
>
<
div
className=
"modal__box__actions"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment