generated from Fascinated/nextjs-13-template-with-tailwindcss
made the whole button clickable
This commit is contained in:
parent
0a85026b71
commit
eeea8a6930
@ -23,16 +23,19 @@ export default function Home() {
|
|||||||
<div className="flex flex-col items-center">
|
<div className="flex flex-col items-center">
|
||||||
{Config.links.map((link, index) => {
|
{Config.links.map((link, index) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<a
|
||||||
<button
|
key={index}
|
||||||
|
href={link.url}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
|
<div
|
||||||
key={index}
|
key={index}
|
||||||
className={`mt-4 px-4 w-60 py-2 rounded ${link.color.normal} hover:${link.color.hover}`}
|
className={`mt-4 px-4 w-60 py-2 rounded ${link.color.normal} hover:${link.color.hover}`}
|
||||||
>
|
>
|
||||||
<a href={link.url} target="_blank">
|
{link.title}
|
||||||
{link.title}
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</button>
|
|
||||||
</>
|
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user