Remove personal website link from footer and update limit first hf
Browse files- src/Footer.tsx +3 -4
- src/lib/huggingface.ts +1 -1
src/Footer.tsx
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
function Footer() {
|
2 |
return (
|
3 |
<footer className="bg-white w-full">
|
4 |
-
<div className="max-w-7xl flex flex-col items-center justify-center text-center px-4 sm:px-6 lg:px-8 py-4 mx-auto">
|
5 |
<div className="flex flex-row items-center space-x-2 text-sm text-gray-500">
|
6 |
-
|
7 |
href="https://vnavarro.dev"
|
8 |
target="_blank"
|
9 |
rel="noopener noreferrer"
|
@@ -11,8 +11,7 @@ function Footer() {
|
|
11 |
>
|
12 |
vnavarro.dev
|
13 |
</a>
|
14 |
-
|
15 |
-
<div className="w-[1px] h-4 bg-gray-500" />
|
16 |
<div className="flex flex-row space-x-2">
|
17 |
<span>Powered by</span>
|
18 |
<a
|
|
|
1 |
function Footer() {
|
2 |
return (
|
3 |
<footer className="bg-white w-full">
|
4 |
+
<div className="max-w-7xl flex flex-col items-center justify-center text-center px-4 sm:px-6 lg:px-8 py-4 mx-auto h-16">
|
5 |
<div className="flex flex-row items-center space-x-2 text-sm text-gray-500">
|
6 |
+
{/*<a
|
7 |
href="https://vnavarro.dev"
|
8 |
target="_blank"
|
9 |
rel="noopener noreferrer"
|
|
|
11 |
>
|
12 |
vnavarro.dev
|
13 |
</a>
|
14 |
+
<div className="w-[1px] h-4 bg-gray-500" />*/}
|
|
|
15 |
<div className="flex flex-row space-x-2">
|
16 |
<span>Powered by</span>
|
17 |
<a
|
src/lib/huggingface.ts
CHANGED
@@ -132,7 +132,7 @@ const getModelsByPipeline = async (
|
|
132 |
): Promise<ModelInfoResponse[]> => {
|
133 |
// Second search with search=onnx
|
134 |
const response1 = await fetch(
|
135 |
-
`https://huggingface.co/api/models?filter=${pipelineTag}&search=onnx-community&sort=createdAt&limit=
|
136 |
{
|
137 |
method: 'GET'
|
138 |
}
|
|
|
132 |
): Promise<ModelInfoResponse[]> => {
|
133 |
// Second search with search=onnx
|
134 |
const response1 = await fetch(
|
135 |
+
`https://huggingface.co/api/models?filter=${pipelineTag}&search=onnx-community&sort=createdAt&limit=10`,
|
136 |
{
|
137 |
method: 'GET'
|
138 |
}
|