File size: 500 Bytes
46c7a16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
import { Icon } from 'astro-icon/components';
const { pageName, pageLocation } = Astro.props;
---

<div class="h-[80px] w-full p-0 flex self-center transition duration-200">
    <div class="flex grow items-center justify-left">
        <a aria-label="home" href={pageLocation} class="text-[30px] text-[--accent] mr-[20px]">
            <Icon name="mdi:chevron-left" />
        </a>
        <p class="text-[16px] font-medium text-[--accent]">
            {pageName}
        </p>
    </div>
</div>