Skip to content

Commit

Permalink
ceo imporvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Nowak committed Oct 29, 2023
1 parent 87cf7b0 commit b98ece1
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 13 deletions.
1 change: 1 addition & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"start_url": ".",
"display": "standalone",
"background_color": "#040c18",
"theme_color": "#040c18",
"description": "Exchange, Transfer, Build Your Crypto Business with KSOX"
}
8 changes: 4 additions & 4 deletions src/components/footer/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,28 @@ export default component$(() => {
target="_blank"
rel="noreferrer"
>
<img src={DiscordSvg} width={30} height={30} />
<img src={DiscordSvg} width={30} height={30} alt="discord" />
</a>
<a
href={"https://t.me/ksox_community"}
target="_blank"
rel="noreferrer"
>
<img src={TelegramSvg} width={30} height={30} />
<img src={TelegramSvg} width={30} height={30} alt="telegram" />
</a>
<a
href={"https://www.linkedin.com/company/ksox"}
target="_blank"
rel="noreferrer"
>
<img src={LinkedInSvg} width={30} height={30} />
<img src={LinkedInSvg} width={30} height={30} alt="linkedin" />
</a>
<a
href={"https://twitter.com/KsoxExchange"}
target="_blank"
rel="noreferrer"
>
<img src={XSvg} width={30} height={30} />
<img src={XSvg} width={30} height={30} alt="twitter" />
</a>
</div>
</div>
Expand Down
18 changes: 12 additions & 6 deletions src/components/header/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,32 +21,38 @@ export default component$(() => {
<div class={wrapper}>
<div class={leftSide}>
<a href="#landing-page">
<img src={LogoSvg} width={100} height={40} class={navItem} />
<img
src={LogoSvg}
width={100}
height={40}
class={navItem}
alt="ksox"
/>
</a>
</div>
<div class={rightSide}>
<a href={"#ksox-solutions"}>
<div class={[box, navItem]}>
<div class={boxText}>Solutions</div>
<img src={SolutionsSvg} width={20} height={20} />
<img src={SolutionsSvg} width={20} height={20} alt="solutions" />
</div>
</a>
<img src={DotSvg} width={5} height={5} />
<img src={DotSvg} width={5} height={5} alt="spacer" />
<a href={"#contact"}>
<div class={[box, navItem]}>
<div class={boxText}>Connect</div>
<img src={ConnectSvg} width={20} height={20} />
<img src={ConnectSvg} width={20} height={20} alt="contact" />
</div>
</a>
<img src={DotSvg} width={5} height={5} />
<img src={DotSvg} width={5} height={5} alt="spacer" />
<a
href={"https://github.com/visoftsolutions"}
target="_blank"
rel="noreferrer"
>
<div class={[box, navItem]}>
<div class={boxText}>Source Code</div>
<img src={GithubSvg} width={20} height={20} />
<img src={GithubSvg} width={20} height={20} alt="github" />
</div>
</a>
</div>
Expand Down
11 changes: 8 additions & 3 deletions src/components/technology/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default component$(() => {
</div>
</div>
<div q:slot="image">
<img src={ServerSvg} width={280} height={200} />
<img src={ServerSvg} width={280} height={200} alt="safety image" />
</div>
</InfoboxLeft>
<InfoboxRight>
Expand All @@ -53,7 +53,7 @@ export default component$(() => {
</div>
</div>
<div q:slot="image">
<img src={LaptopSvg} width={280} height={200} />
<img src={LaptopSvg} width={280} height={200} alt="offer image" />
</div>
</InfoboxRight>
<InfoboxLeft>
Expand All @@ -71,7 +71,12 @@ export default component$(() => {
</div>
</div>
<div q:slot="image">
<img src={ReceiptSvg} width={280} height={200} />
<img
src={ReceiptSvg}
width={280}
height={200}
alt="features image"
/>
</div>
</InfoboxLeft>
</div>
Expand Down

0 comments on commit b98ece1

Please sign in to comment.