Skip to content

Commit

Permalink
📝 add grid example page
Browse files Browse the repository at this point in the history
  • Loading branch information
Oculux314 committed Aug 6, 2024
1 parent 8c4e952 commit f6a74c2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions next/app/test/nate/grid/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
export default function GridPage() {
return (
<div className="border border-green-500 grid grid-cols-2 gap-4">
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-green-500 col-start-2 col-span-2 row-start-4 border border-pink-400">
Grid Page
</h1>
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-red-500">Grid Page</h1>
<h1 className="text-red-500">Grid Page</h1>
</div>
);
}

0 comments on commit f6a74c2

Please sign in to comment.