Skip to content

Commit 7a07ff2

Browse files
authored
Update: Change logo in service page (#34)
* Update: Change logo in service page * fix testing * change logo client in services page * remove logo
1 parent 5595192 commit 7a07ff2

File tree

5 files changed

+2
-73
lines changed

5 files changed

+2
-73
lines changed

app/(services)/services/[lang]/home.tsx

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import Link from "next/link";
3939
import Image from "next/image";
4040
import { sendGAEvent } from "@next/third-parties/google";
4141
import data from "@/data.json";
42+
import { PartnersList } from "@/app/components/partner-list";
4243

4344
export default function Home({ lang }: { lang: SupportedLanguage }) {
4445
return (
@@ -322,26 +323,7 @@ function Partners({ lang }: { lang: SupportedLanguage }) {
322323
{servicesPartnersDesc(lang)}
323324
</p>
324325

325-
<div className="flex flex-wrap items-center justify-center gap-8">
326-
{[
327-
{
328-
imageUrl: "/images/clients/services/my-republic.svg",
329-
name: "My Republic"
330-
},
331-
{ imageUrl: "/images/clients/services/btn.svg", name: "BTN" },
332-
{ imageUrl: "/images/clients/services/aruna.svg", name: "Aruna" }
333-
].map(({ imageUrl, name }) => (
334-
<Image
335-
key={name}
336-
src={imageUrl}
337-
alt={name}
338-
height={36}
339-
width={120}
340-
className="h-6 w-auto object-contain sm:h-7"
341-
priority
342-
/>
343-
))}
344-
</div>
326+
<PartnersList />
345327
</section>
346328
);
347329
}

public/images/clients/aruna.svg

Lines changed: 0 additions & 14 deletions
This file was deleted.

public/images/clients/services/aruna.svg

Lines changed: 0 additions & 7 deletions
This file was deleted.

public/images/clients/services/btn.svg

Lines changed: 0 additions & 6 deletions
This file was deleted.

public/images/clients/services/my-republic.svg

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)