Skip to content

Commit

Permalink
feat(home): add empty features boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
LilaRest committed May 16, 2023
1 parent 9c0c58a commit 49ebff5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions src/app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ const Page: NextPage = () => (
</div>
<Scroller className="absolute bottom-11" />
</section>
<section className="flex justify-center">
<div className="w-[70vw] grid grid-cols-3 gap-12 py-40">
<Card className="h-64">A</Card>
<Card className="h-64">B</Card>
<Card className="h-64">C</Card>
<Card className="h-64">D</Card>
<Card className="h-64">E</Card>
<Card className="h-64">F</Card>
</div>
</section>
</>
);
export default Page;
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const theme = {
},
extend: {
backgroundImage: {
card: `radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgb(var(--primary-bg) / 0.08), transparent);`
card: `radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgb(var(--primary-bg) / 0.05), rgb(var(--primary-bg) / 0.05), rgb(var(--secondary-bg) / 0.05), transparent);`,
},
colors: {
bg: "rgb(var(--bg) / <alpha-value>)",
Expand Down

0 comments on commit 49ebff5

Please sign in to comment.