Skip to content

Commit 5cc5fc1

Browse files
authored
Merge pull request #204 from phuoc-ng/check-browser-support
Add Check Browsers Support
2 parents 582a486 + f7f541f commit 5cc5fc1

File tree

2 files changed

+71
-9
lines changed

2 files changed

+71
-9
lines changed

README.md

Lines changed: 49 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,52 @@ Be my friend on
6464

6565
You might be interested in my products:
6666

67-
| Product | Description |
68-
|-------------------------------------------------------|-------------------------------------------------------------------|
69-
| 01. [1 LOC](https://1loc.dev) | Favorite JavaScript utilities in single line of code |
70-
| 02. [Blur Page](https://blur.page) | A browser extension to hide sensitive information on a web page |
71-
| 03. [CSS Layout](https://csslayout.io) | A collection of popular layouts and patterns made with CSS |
72-
| 04. [Fake Numbers](https://fakenumbers.io) | Generate fake and valid numbers |
73-
| 05. [Form Validation](https://formvalidation.io) | The best validation library for JavaScript |
74-
| 06. [HTML DOM](https://htmldom.dev) | How to manage HTML DOM with vanilla JavaScript |
75-
| 07. [React PDF Viewer](https://react-pdf-viewer.dev) | A React component to view a PDF document |
67+
<table>
68+
<tbody>
69+
<tr valign="top">
70+
<td width="25%" align="center">
71+
<h3>1 LOC (3.3k★)</h3>
72+
<a href="https://1loc.dev">Favorite JavaScript utilities in single line of code</a>
73+
</td>
74+
<td width="25%" align="center">
75+
<h3>Blur Page</h3>
76+
<a href="https://blur.page">A browser extension to hide sensitive information on a web page</a>
77+
</td>
78+
<td width="25%" align="center">
79+
<h3>Check Browsers Support</h3>
80+
<a href="https://checkbrowsers.support">A browser extension to check browser compatibility without leaving your tab</a>
81+
</td>
82+
<td width="25%" align="center">
83+
<h3>CSS Layout (2.7k★)</h3>
84+
<a href="https://csslayout.io">A collection of popular layouts and patterns made with CSS</a>
85+
</td>
86+
</tr>
87+
<tr valign="top">
88+
<td width="25%" align="center">
89+
<h3>Fake Numbers</h3>
90+
<a href="https://fakenumbers.io">Generate fake and valid numbers</a>
91+
</td>
92+
<td width="25%" align="center">
93+
<h3>Form Validation</h3>
94+
<a href="https://formvalidation.io">The best validation library for JavaScript</a>
95+
</td>
96+
<td width="25%" align="center">
97+
<h3>HTML DOM (3.1k★)</h3>
98+
<a href="https://htmldom.dev">How to manage HTML DOM with vanilla JavaScript</a>
99+
</td>
100+
<td width="25%" align="center">
101+
<h3>React PDF Viewer</h3>
102+
<a href="https://react-pdf-viewer.dev">A React component to view a PDF document</a>
103+
</td>
104+
</tr>
105+
<tr valign="top">
106+
<td width="25%" align="center">
107+
<h3>this VS that</h3>
108+
<a href="https://thisthat.dev">The differences between ___ and ___ in the front-end development</a>
109+
</td>
110+
<td width="25%" align="center"></td>
111+
<td width="25%" align="center"></td>
112+
<td width="25%" align="center"></td>
113+
</tr>
114+
</tbody>
115+
</table>

client/pages/Footer.tsx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@ const Footer: React.FC<{}> = () => {
3535
<span className='text-gray-600'>a browser extension to hide sensitive element on page</span>
3636
</a>
3737
</li>
38+
<li className='w-1/2 sm:w-1/3 px-1 mb-6'>
39+
<a
40+
href="https://checkbrowsers.support"
41+
rel="noopener noreferrer"
42+
target="_blank"
43+
title="Check Browsers Support - a browser extension to check browser compatibility without leaving your tab"
44+
>
45+
<div className='font-semibold'>Check Browsers Support</div>
46+
<span className='text-gray-600'>a browser extension to check browser compatibility without leaving your tab</span>
47+
</a>
48+
</li>
3849
<li className='w-1/2 sm:w-1/3 px-1 mb-6'>
3950
<a
4051
href="https://csslayout.io"
@@ -90,6 +101,17 @@ const Footer: React.FC<{}> = () => {
90101
<span className='text-gray-600'>a PDF viewer made for React</span>
91102
</a>
92103
</li>
104+
<li className='w-1/2 sm:w-1/3 px-1 mb-6'>
105+
<a
106+
href="https://thisthat.dev"
107+
rel="noopener noreferrer"
108+
target="_blank"
109+
title="this VS that - the differences between ___ and ___ in the front-end development"
110+
>
111+
<div className='font-semibold'>this VS that</div>
112+
<span className='text-gray-600'>the differences between ___ and ___ in the front-end development</span>
113+
</a>
114+
</li>
93115
</ul>
94116
</div>
95117

0 commit comments

Comments
 (0)