mirror of
https://github.com/Radiquum/radiquum.github.io.git
synced 2025-09-08 15:33:54 +05:00
refactor: add background to links and headers
feat: add skills
This commit is contained in:
parent
ab5eedeb07
commit
46f7530e71
8 changed files with 99 additions and 17 deletions
|
@ -41,14 +41,16 @@ export const Photos = () => {
|
|||
<div className="flex flex-col gap-4">
|
||||
<Section>
|
||||
<div className="flex flex-col gap-2 md:flex-row md:justify-between md:items-center">
|
||||
<h2 className="text-4xl md:text-5xl">Photos</h2>
|
||||
<div className="flex items-center gap-4 xl:gap-8">
|
||||
<h2 className="text-4xl md:text-5xl border-1 px-3 py-2 rounded-xl border-white/5 bg-[#ffb1cd]/5 flex-1">Photos</h2>
|
||||
<div className="flex items-center gap-2 flex-1">
|
||||
{links.map((item) => (
|
||||
<Link href={item.url} key={`photos.link.${item.text}`}>
|
||||
<Link href={item.url} key={`photos.link.${item.text}`} className="flex-1">
|
||||
<IconWithText
|
||||
icon={item.icon}
|
||||
text={item.text}
|
||||
desc={item.desc}
|
||||
backgroundColor={"#ffb1cd"}
|
||||
backgroundOpacity={"5%"}
|
||||
/>
|
||||
</Link>
|
||||
))}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue