|
1 | 1 | "use client"; |
2 | 2 | import Image from "next/image"; |
3 | | -import { useEffect, useState } from "react"; |
| 3 | +import { useEffect, useState, useMemo } from "react"; |
4 | 4 |
|
5 | 5 | type Sponsor = { |
6 | 6 | src: string; |
7 | 7 | alt: string; |
8 | 8 | href: string | null; |
9 | 9 | }; |
10 | 10 |
|
| 11 | +let sponsors: Sponsor[] = [ |
| 12 | + { |
| 13 | + src: "/sponsors/abc.jpg", |
| 14 | + alt: "Abergavenny Brake & Clutch", |
| 15 | + href: "http://www.abcmotorfactors.com/", |
| 16 | + }, |
| 17 | + { |
| 18 | + src: "/sponsors/cwbs.jpg", |
| 19 | + alt: "Caldicot Windows & Building Services", |
| 20 | + href: "mailto:chippyatwork78@gmail.com", |
| 21 | + }, |
| 22 | + { |
| 23 | + src: "/sponsors/muddyseries4x4.jpg", |
| 24 | + alt: "Muddy Series 4x4", |
| 25 | + href: "https://www.ebay.co.uk/str/seriesuser4x4", |
| 26 | + }, |
| 27 | + { |
| 28 | + src: "/sponsors/whitecliff4x4.jpg", |
| 29 | + alt: "Whitecliff 4x4", |
| 30 | + href: "https://www.whitecliff4x4.co.uk/", |
| 31 | + }, |
| 32 | + { |
| 33 | + src: "/sponsors/lewis-thomas-spares.png", |
| 34 | + alt: "Lewis Thomas Spares", |
| 35 | + href: "tel:+44 7876 826194", |
| 36 | + }, |
| 37 | + { |
| 38 | + src: "/sponsors/wye-valley-carpet-and-upholstery-cleaners.png", |
| 39 | + alt: "Wye Valley Carpet and Upholstery Cleaners", |
| 40 | + href: "mailto:wyevalleycarpetcleaners@gmail.com", |
| 41 | + }, |
| 42 | + { |
| 43 | + src: "/sponsors/amorgan-property-maintenance.png", |
| 44 | + alt: "A.Morgan Property Maintenance", |
| 45 | + href: "tel:+44 1495 215381", |
| 46 | + }, |
| 47 | + { |
| 48 | + src: "/sponsors/ak-inspection-services.jpg", |
| 49 | + alt: "AK Inspection Services", |
| 50 | + href: "tel:+44 7765 196119", |
| 51 | + }, |
| 52 | +].sort(() => Math.random() - 0.5); |
| 53 | + |
11 | 54 | export default function SponsorGallery() { |
12 | 55 | const [images, setImages] = useState<Sponsor[]>([]); |
13 | 56 |
|
14 | 57 | useEffect(() => { |
15 | | - let images: Sponsor[] = [ |
16 | | - { |
17 | | - src: "/sponsors/abc.jpg", |
18 | | - alt: "Abergavenny Brake & Clutch", |
19 | | - href: "http://www.abcmotorfactors.com/", |
20 | | - }, |
21 | | - { |
22 | | - src: "/sponsors/cwbs.jpg", |
23 | | - alt: "Caldicot Windows & Building Services", |
24 | | - href: "mailto:chippyatwork78@gmail.com", |
25 | | - }, |
26 | | - { |
27 | | - src: "/sponsors/muddyseries4x4.jpg", |
28 | | - alt: "Muddy Series 4x4", |
29 | | - href: "https://www.ebay.co.uk/str/seriesuser4x4", |
30 | | - }, |
31 | | - { |
32 | | - src: "/sponsors/whitecliff4x4.jpg", |
33 | | - alt: "Whitecliff 4x4", |
34 | | - href: "https://www.whitecliff4x4.co.uk/", |
35 | | - }, |
36 | | - { |
37 | | - src: "/sponsors/lewis-thomas-spares.png", |
38 | | - alt: "Lewis Thomas Spares", |
39 | | - href: "tel:+44 7876 826194", |
40 | | - }, |
41 | | - { |
42 | | - src: "/sponsors/wye-valley-carpet-and-upholstery-cleaners.png", |
43 | | - alt: "Wye Valley Carpet and Upholstery Cleaners", |
44 | | - href: "mailto:wyevalleycarpetcleaners@gmail.com", |
45 | | - }, |
46 | | - { |
47 | | - src: "/sponsors/amorgan-property-maintenance.png", |
48 | | - alt: "A.Morgan Property Maintenance", |
49 | | - href: "tel:+44 1495 215381", |
50 | | - }, |
51 | | - { |
52 | | - src: "/sponsors/ak-inspection-services.jpg", |
53 | | - alt: "AK Inspection Services", |
54 | | - href: "tel:+44 7765 196119", |
55 | | - }, |
56 | | - ]; |
57 | | - |
58 | | - images = images.sort(() => Math.random() - 0.5); |
59 | | - setImages(images); |
| 58 | + (async () => setImages(sponsors))(); |
60 | 59 | }, []); |
61 | 60 |
|
62 | 61 | if (images.length == 0) { |
|
0 commit comments