Spaces:
Running
Running
File size: 611 Bytes
67ea2ab b857757 67ea2ab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import { Gallery } from "./_components/gallery";
import { Generation } from "./_components/generation";
import { HeroHeader } from "./_components/hero-header";
async function getLogos() {
const logos = await fetch(process.env.API_URL + "/api/logo")
.then((res) => res.json())
.then((data) => data);
return logos;
}
export const revalidate = 0;
export default async function Home() {
const logos = await getLogos();
return (
<section>
<div className="max-w-4xl mx-auto">
<HeroHeader />
<Generation />
</div>
<Gallery logos={logos} />
</section>
);
}
|