File size: 847 Bytes
1e92f2d |
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 26 27 28 29 |
import { CMS_NAME, CMS_URL } from "../lib/constants";
export default function Intro() {
return (
<section className="flex flex-col items-center mt-16 mb-16 md:flex-row md:justify-between md:mb-12">
<h1 className="text-6xl font-bold leading-tight tracking-tighter md:text-8xl md:pr-8">
Blog.
</h1>
<h4 className="mt-5 text-lg text-center md:text-left md:pl-8">
A statically generated blog example using{" "}
<a
href="https://nextjs.org/"
className="underline transition-colors duration-200 hover:text-success"
>
Next.js
</a>{" "}
and{" "}
<a
href={CMS_URL}
className="underline transition-colors duration-200 hover:text-success"
>
{CMS_NAME}
</a>
.
</h4>
</section>
);
}
|