feat: move web icon to first
This commit is contained in:
parent
9f28b07480
commit
959843394d
1 changed files with 10 additions and 10 deletions
|
|
@ -53,16 +53,6 @@ export function BusinessSection({ businesses = [] }: BusinessSectionProps) {
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="space-y-2">
|
<CardContent className="space-y-2">
|
||||||
<div className="flex gap-3 pt-2">
|
<div className="flex gap-3 pt-2">
|
||||||
{business.instagramUrl && (
|
|
||||||
<a
|
|
||||||
href={business.instagramUrl}
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
aria-label="Instagram"
|
|
||||||
>
|
|
||||||
<Instagram className="w-5 h-5 text-pink-500" />
|
|
||||||
</a>
|
|
||||||
)}
|
|
||||||
{business.websiteUrl && (
|
{business.websiteUrl && (
|
||||||
<a
|
<a
|
||||||
href={business.websiteUrl}
|
href={business.websiteUrl}
|
||||||
|
|
@ -73,6 +63,16 @@ export function BusinessSection({ businesses = [] }: BusinessSectionProps) {
|
||||||
<Globe className="w-5 h-5 text-blue-500" />
|
<Globe className="w-5 h-5 text-blue-500" />
|
||||||
</a>
|
</a>
|
||||||
)}
|
)}
|
||||||
|
{business.instagramUrl && (
|
||||||
|
<a
|
||||||
|
href={business.instagramUrl}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
aria-label="Instagram"
|
||||||
|
>
|
||||||
|
<Instagram className="w-5 h-5 text-pink-500" />
|
||||||
|
</a>
|
||||||
|
)}
|
||||||
{business.facebookUrl && (
|
{business.facebookUrl && (
|
||||||
<a
|
<a
|
||||||
href={business.facebookUrl}
|
href={business.facebookUrl}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue