mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* refactor: migrate eslint to v9 * chore: lint * chore: update eslint command * chore: fix lint warnings * chore: separate lint and lint:fix * chore: exclude contentlayer generated code * fix(scripts): add missing await
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import {title, subtitle, titleWrapper, sectionWrapper} from "@/components/primitives";
|
|
import {FeaturesGrid} from "@/components/marketing/features-grid";
|
|
import landingContent from "@/content/landing";
|
|
|
|
export const LastButNotLeast = () => {
|
|
return (
|
|
<section className={sectionWrapper({class: "mt-16 lg:mt-44"})}>
|
|
<div className="flex flex-col gap-0 md:gap-8">
|
|
<div>
|
|
<div className={titleWrapper({class: "items-center"})}>
|
|
<div>
|
|
<h1 className={title({size: "lg"})}>Last </h1>
|
|
<h1 className={title({color: "yellow", size: "lg"})}>but</h1>
|
|
</div>
|
|
<div>
|
|
<h1 className={title({size: "lg"})}>not </h1>
|
|
<h1 className={title({size: "lg", color: "pink"})}>least.</h1>
|
|
</div>
|
|
</div>
|
|
<p
|
|
className={subtitle({
|
|
class: "mt-4 md:w-full text-center flex justify-center items-center",
|
|
})}
|
|
>
|
|
A fully-featured React UI library.
|
|
</p>
|
|
</div>
|
|
<FeaturesGrid features={landingContent.fullFeatures} />
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|