added number to footer
This commit is contained in:
@@ -1,6 +1,4 @@
|
|||||||
---
|
---
|
||||||
import Logo from "../atoms/logo";
|
|
||||||
import MaxWidthWrapper from "../other/max.width.wrapper";
|
|
||||||
import {
|
import {
|
||||||
ADDRESS,
|
ADDRESS,
|
||||||
CONTACT_EMAIL,
|
CONTACT_EMAIL,
|
||||||
@@ -8,8 +6,14 @@ import {
|
|||||||
getPhoneNumber,
|
getPhoneNumber,
|
||||||
navLinks,
|
navLinks,
|
||||||
} from "@/lib/constants";
|
} from "@/lib/constants";
|
||||||
import Title from "../atoms/title";
|
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
|
import Logo from "../atoms/logo";
|
||||||
|
import Title from "../atoms/title";
|
||||||
|
import MaxWidthWrapper from "../other/max.width.wrapper";
|
||||||
|
import { cn } from "@/lib/utils";
|
||||||
|
import Logo from "../atoms/logo";
|
||||||
|
import Title from "../atoms/title";
|
||||||
|
import MaxWidthWrapper from "../other/max.width.wrapper";
|
||||||
|
|
||||||
const { page, variant = "lime" } = Astro.props;
|
const { page, variant = "lime" } = Astro.props;
|
||||||
|
|
||||||
@@ -36,11 +40,17 @@ const contactLink = getContactLink(page);
|
|||||||
<Logo />
|
<Logo />
|
||||||
</a>
|
</a>
|
||||||
<p class="text-md leading-6 text-blue-50">
|
<p class="text-md leading-6 text-blue-50">
|
||||||
Address:
|
|
||||||
<span>{ADDRESS}</span>
|
<span>{ADDRESS}</span>
|
||||||
</p>
|
</p>
|
||||||
<p class="text-md leading-6 text-blue-50">
|
<p class="text-md leading-6 text-blue-50">
|
||||||
Contact:
|
<a
|
||||||
|
href={contactLink}
|
||||||
|
class="text-blue-50 hover:text-blue-100"
|
||||||
|
>
|
||||||
|
{phoneNumber}
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<p class="text-md leading-6 text-blue-50">
|
||||||
<a
|
<a
|
||||||
href={`mailto:${CONTACT_EMAIL}`}
|
href={`mailto:${CONTACT_EMAIL}`}
|
||||||
class="text-blue-50 hover:text-blue-100"
|
class="text-blue-50 hover:text-blue-100"
|
||||||
|
|||||||
Reference in New Issue
Block a user