-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59984c5
commit dc14b35
Showing
8 changed files
with
122 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,24 @@ | ||
import Card from "@/app/components/bento/CardTemplate"; | ||
import Link from "@/app/components/ui/Link"; | ||
import { FaInstagram } from "react-icons/fa"; | ||
import Halo from "@/app/components/ui/Halo"; | ||
|
||
export default function Instagram() { | ||
return ( | ||
<Card className="col-span-1 flex aspect-square flex-col gap-1.5 p-6"> | ||
<div className="flex aspect-square h-10 w-fit items-center justify-center rounded-xl bg-gradient-to-bl from-[#7638FA] via-[#FF006A] to-[#FED702]"> | ||
<FaInstagram className="text-2xl text-white" /> | ||
</div> | ||
<p className="text-secondary">@brianruizy</p> | ||
<Link | ||
className="mt-auto flex w-fit items-center gap-1.5 rounded-full bg-secondary px-4 py-1.5 text-sm no-underline hover:bg-tertiary" | ||
href="https://instagram.com/brianruizy" | ||
> | ||
<span className="font-medium text-primary">Follow</span> | ||
<span className="text-tertiary">3.9k</span> | ||
</Link> | ||
</Card> | ||
<Halo className="col-span-1 row-span-1"> | ||
<Card className="col-span-1 flex aspect-square flex-col gap-1.5 p-6"> | ||
<div className="flex aspect-square h-10 w-fit items-center justify-center rounded-xl bg-gradient-to-bl from-[#7638FA] via-[#FF006A] to-[#FED702]"> | ||
<FaInstagram className="text-2xl text-white" /> | ||
</div> | ||
<p className="text-secondary">@brianruizy</p> | ||
<Link | ||
className="mt-auto flex w-fit items-center gap-1.5 rounded-full bg-secondary px-4 py-1.5 text-sm no-underline hover:bg-tertiary" | ||
href="https://instagram.com/brianruizy" | ||
> | ||
<span className="font-medium text-primary">Follow</span> | ||
<span className="text-tertiary">3.9k</span> | ||
</Link> | ||
</Card> | ||
</Halo> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters