Skip to content

Commit 4103995

Browse files
committed
fix build
1 parent ca33858 commit 4103995

File tree

2 files changed

+8
-21
lines changed

2 files changed

+8
-21
lines changed

website/pages/components/Filters.tsx

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Checkbox } from "@supabase/ui";
1+
22
import { Button, Input } from "@supabase/ui";
33

44
export default function Filters() {
@@ -11,23 +11,10 @@ export default function Filters() {
1111
/>
1212
</div>
1313
<div className="p-4">
14-
<Checkbox.Group label="Type">
15-
<Checkbox label="SQL" checked />
16-
<Checkbox label="NoSQL" checked />
17-
</Checkbox.Group>
18-
</div>
19-
<div className="p-4">
20-
<Checkbox.Group label="License">
14+
{/* <Checkbox.Group label="License">
2115
<Checkbox label="Free" checked />
2216
<Checkbox label="Paid" />
23-
</Checkbox.Group>
24-
</div>
25-
<div className="p-4">
26-
<Checkbox.Group label="Compatibility">
27-
<Checkbox label="PostgreSQL" checked />
28-
<Checkbox label="MySQL" checked />
29-
<Checkbox label="Mongo" checked />
30-
</Checkbox.Group>
17+
</Checkbox.Group> */}
3118
</div>
3219
</div>
3320
);

website/pages/components/Footer.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const navigation = {
1010
{
1111
name: 'Facebook',
1212
href: '#',
13-
icon: (props) => (
13+
icon: (props: any) => (
1414
<svg fill="currentColor" viewBox="0 0 24 24" {...props}>
1515
<path
1616
fillRule="evenodd"
@@ -23,7 +23,7 @@ const navigation = {
2323
{
2424
name: 'Instagram',
2525
href: '#',
26-
icon: (props) => (
26+
icon: (props: any) => (
2727
<svg fill="currentColor" viewBox="0 0 24 24" {...props}>
2828
<path
2929
fillRule="evenodd"
@@ -36,7 +36,7 @@ const navigation = {
3636
{
3737
name: 'Twitter',
3838
href: '#',
39-
icon: (props) => (
39+
icon: (props: any) => (
4040
<svg fill="currentColor" viewBox="0 0 24 24" {...props}>
4141
<path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" />
4242
</svg>
@@ -45,7 +45,7 @@ const navigation = {
4545
{
4646
name: 'GitHub',
4747
href: '#',
48-
icon: (props) => (
48+
icon: (props: any) => (
4949
<svg fill="currentColor" viewBox="0 0 24 24" {...props}>
5050
<path
5151
fillRule="evenodd"
@@ -58,7 +58,7 @@ const navigation = {
5858
{
5959
name: 'Dribbble',
6060
href: '#',
61-
icon: (props) => (
61+
icon: (props: any) => (
6262
<svg fill="currentColor" viewBox="0 0 24 24" {...props}>
6363
<path
6464
fillRule="evenodd"

0 commit comments

Comments
 (0)