Initial ui
This commit is contained in:
parent
526822335e
commit
4bfb87448f
18 changed files with 702 additions and 92 deletions
19
app/components/LinksGrid.tsx
Normal file
19
app/components/LinksGrid.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { LINKS } from "../lib/links";
|
||||
import LinkCard from "./LinkCard";
|
||||
|
||||
export default function LinksGrid() {
|
||||
return (
|
||||
<div>
|
||||
<div className="flex items-baseline justify-between mb-5">
|
||||
<h2 className="text-lg font-medium tracking-tight text-gray-900">
|
||||
Services & Apps
|
||||
</h2>
|
||||
</div>
|
||||
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-3.5">
|
||||
{LINKS.map((link, i) => (
|
||||
<LinkCard key={link.name} link={link} delay={i * 60} />
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue