Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { EXAMPLE_TOOL_NAME, EXAMPLE_TOOL_URL } from "../lib/constants";
export default function Intro() {
return (
<section className="flex-col md:flex-row flex items-center md:justify-between mt-16 mb-16 md:mb-12">
<h1 className="text-6xl md:text-8xl font-bold tracking-tighter leading-tight md:pr-8">
Blog.
</h1>
<h4 className="text-center md:text-left text-lg mt-5 md:pl-8">
A statically generated blog example using{" "}
<a
href="https://nextjs.org/"
className="underline hover:text-success duration-200 transition-colors"
>
Next.js
</a>{" "}
and{" "}
<a
href={EXAMPLE_TOOL_URL}
className="underline hover:text-success duration-200 transition-colors"
>
{EXAMPLE_TOOL_NAME}
</a>
.
</h4>
</section>
);
}