-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWaveFooter.astro
More file actions
216 lines (187 loc) · 5.05 KB
/
WaveFooter.astro
File metadata and controls
216 lines (187 loc) · 5.05 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
---
import { Icon } from 'astro-icon';
const year = new Date().getFullYear();
---
<footer class="wave text-base">
<div class="footer-bottom flex flex-wrap w-full justify-center">
<div class="max-w-8xl p-8 w-full">
<div class="flex justify-center lg:justify-start w-full">
<Icon class="footer-logo h-20 w-20" name="logo" />
</div>
<nav class="grid grid-cols-2 max-w-5xl pt-12 pb-12 w-full lg:grid-cols-4">
<div class="p-8 lg:p-4">
<span class="font-bold text-white text-xl md:text-2xl lg:text-3xl"
>Services</span
>
<a
href="/services/app-development/"
class="block leading-6 py-2 lg:py-1"
>
App Development
</a>
<a href="/services/mentoring/" class="block leading-6 py-2 lg:py-1">
Mentoring
</a>
<a href="/services/open-source/" class="block leading-6 py-2 lg:py-1">
Open Source
</a>
</div>
<div class="p-8 lg:p-4">
<span class="font-bold text-white text-xl md:text-2xl lg:text-3xl">
Specialties
</span>
<a href="/services/app-tours/" class="block leading-6 py-2 lg:py-1">
App Tours
</a>
<a
href="/services/next-consulting/"
class="block leading-6 py-2 lg:py-1"
>
Next.js Consulting
</a>
<a
href="/services/ember-consulting/"
class="block leading-6 py-2 lg:py-1"
>
Ember Consulting
</a>
<a
href="/services/nuxt-consulting/"
class="block leading-6 py-2 lg:py-1"
>
Nuxt.js Consulting
</a>
</div>
<div class="p-8 lg:p-4">
<span class="font-bold text-white text-xl md:text-2xl lg:text-3xl"
>Company</span
>
<a href="/about/" class="block leading-6 py-2 lg:py-1"> About</a>
<a href="/work/" class="block leading-6 py-2 lg:py-1"> Work</a>
<a href="/blog/" class="block leading-6 py-2 lg:py-1"> Blog</a>
<a
href="/whiskey-web-and-whatnot-podcast/"
class="block leading-6 py-2 lg:py-1"
>
Podcast
</a>
</div>
<div class="p-8 w-full lg:p-4">
<span class="font-bold text-white text-xl md:text-2xl lg:text-3xl"
>Connect</span
>
<a href="/contact/" class="block leading-6 py-2 lg:py-1"> Contact</a>
<a
href="https://github.com/shipshapecode"
class="block leading-6 py-2 lg:py-1"
>
GitHub
</a>
<a
href="https://twitter.com/shipshapecode"
class="block leading-6 py-2 lg:py-1"
>
Twitter
</a>
<a
href="https://www.linkedin.com/company/ship-shape/"
class="block leading-6 py-2 lg:py-1"
>
LinkedIn
</a>
</div>
</nav>
<div
class="flex flex-wrap items-center justify-center w-full lg:justify-start"
>
<div class="flex justify-center w-full lg:justify-start">
<div class="flex items-center pl-2 pr-2 justify-start">
<a
aria-label="GitHub"
class="p-2 github-logo"
href="https://github.com/shipshapecode"
>
<Icon name="github" />
</a>
<a
aria-label="Twitter"
class="p-2 twitter-logo"
href="https://twitter.com/shipshapecode"
>
<Icon name="twitter" />
</a>
<a
aria-label="LinkedIn"
class="p-2 linkedin-logo"
href="https://www.linkedin.com/company/ship-shape/"
>
<Icon name="linkedin" />
</a>
</div>
</div>
<div class="flex flex-wrap p-4 text-white">
Copyright © {year} Ship Shape Consulting LLC. All rights reserved.
</div>
</div>
</div>
</div>
</footer>
<style lang="scss" is:global>
.wave {
@apply bg-navy pt-24;
}
.footer-logo {
path {
fill: var(--white);
stroke: var(--white);
stroke-width: 1.25rem;
}
}
.footer-bottom {
a {
@apply font-bold text-white;
&:hover,
&:focus {
@apply text-red-light;
}
}
.github-logo,
.linkedin-logo,
.twitter-logo {
svg {
path {
@apply transition-colors;
fill: var(--white);
transition-duration: 0.25s;
transition-property: fill;
}
}
&:hover,
&:focus {
svg {
path {
fill: var(--red-light);
}
}
}
}
}
.github-logo {
svg {
height: 22px;
width: 23px;
}
}
.linkedin-logo {
svg {
height: 20px;
width: 19px;
}
}
.twitter-logo {
svg {
height: 19px;
width: 23px;
}
}
</style>