Skip to content

Commit

Permalink
feat(sikalabs-landing): Add billing informations
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed May 12, 2024
1 parent d8f2c7c commit f67232c
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sites20/sites/sikalabs-landing/layouts/Layout.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import Head from "next/head";

const Layout = props => (
const Layout = (props) => (
<>
<Head>
<meta charSet="utf-8" />
Expand Down
4 changes: 2 additions & 2 deletions sites20/sites/sikalabs-landing/pages/bitcoin/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from "react";
import Head from "next/head";

const BitcoinOrange = props => (
const BitcoinOrange = (props) => (
<span style={{ color: "#FF9900" }}>{props.children}</span>
);

const Small = props => (
const Small = (props) => (
<span style={{ fontSize: "0.7em" }}>{props.children}</span>
);

Expand Down
25 changes: 25 additions & 0 deletions sites20/sites/sikalabs-landing/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,31 @@ const Index = () => (
<a href="mailto:hi@sikalabs.com" className="button">
hi@sikalabs.com
</a>
<div style={{ height: "2em" }}></div>
<h3>SikaLabs s.r.o.</h3>
<p>
Varšavská 715/36
<br />
120 00 Praha 2
<br />
Česká Republika
</p>
<table className="contact-table table-borderless">
<tbody>
<tr>
<td>IČ:</td>
<td>19168993</td>
</tr>
<tr>
<td>DIČ:</td>
<td>CZ19168993 (platce DPH)</td>
</tr>
<tr>
<td>Účet:&nbsp;&nbsp;&nbsp;</td>
<td>2202527221/2010 (Fio)</td>
</tr>
</tbody>
</table>
</div>
);

Expand Down

0 comments on commit f67232c

Please sign in to comment.