-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFooter.js
More file actions
104 lines (99 loc) · 3.56 KB
/
Footer.js
File metadata and controls
104 lines (99 loc) · 3.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import Link from "next/link";
import Image from "next/image";
const trans = {
tagline: {
en: "Addiction Practitioner",
af: "Voorligting Sielkundige - Terapie in persoon",
},
description: {
en: "SACSSP registered social worker based in Winelands.",
af: "HPCSA-geregistreerde voorligting sielkundige gebaseer in Paarl.",
},
about: {
en: "About",
af: "Meer oor my",
},
therapy: {
en: "Services",
af: "Terapiedienste",
},
copyright: {
en: "Copyright",
af: "Kopiereg",
},
};
export default function Footer({ locale, locales }) {
return (
<footer className="relative pt-4 pb-6 bg-accent-900">
<div className="pt-8 border-t-4 bg-accent-900 border-brand">
<div className="relative px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
<div className="flex flex-wrap">
<div className="flex justify-center w-full px-4 pb-6 responsive md:pb-0 md:justify-start lg:w-2/12">
<Image
alt="Adam Labuschagne Logo Artum Lilly"
src="https://a.storyblok.com/f/302764/600x400/0f72e58a98/untitled-design-2.png"
className="object cover"
width={600}
height={400}
/>
</div>
<div className="w-full px-4 text-center md:text-left lg:w-6/12">
<div className="text-3xl font-semibold uppercase text-brand-200">
Adam Labuschagne
</div>
<div className="mt-0 text-lg text-white">
{trans.tagline[locale]}
</div>
<p className="text-gray-200">{trans.description[locale]}</p>
<div className="mt-2">
<ul className="text-sm text-gray-700 list-unstyled">
<li>
<a
href="mailto:adam@thecounsellorscouch.com"
className="text-brand-200"
>
adam@thecounsellorscouch.com
</a>
</li>
</ul>
</div>
</div>
<div className="hidden w-full px-4 lg:w-4/12 lg:flex">
<div className="flex flex-wrap mb-6 items-top">
<div className="w-full px-4 ml-auto lg:w-12/12">
<span className="block mb-2 text-sm uppercase text-brand-500">
Sitemap
</span>
<ul className="list-unstyled">
<li>
<Link href="/about">
<a className="block pb-2 text-sm text-gray-100 hover:text-brand-400">
{trans.about[locale]}
</a>
</Link>
</li>
<li>
<Link href="/therapy-services">
<a className="block pb-2 text-sm text-gray-100 hover:text-brand-400">
{trans.therapy[locale]}
</a>
</Link>
</li>
</ul>
</div>
</div>
</div>
</div>
<hr className="my-6 border-brand" />
<div className="flex flex-wrap items-center justify-center md:justify-between">
<div className="w-full px-4 mx-auto text-center md:w-4/12">
<div className="py-1 text-sm text-gray-300">
{trans.copyright[locale]} © 2024 Adam Labuschagne
</div>
</div>
</div>
</div>
</div>
</footer>
);
}