Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyasbozdemir committed Aug 8, 2023
1 parent 0d16d22 commit 0a5a26f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions components/shared/Footer/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const MetaBusinessPartner = () => {
<>
<Link href="#" target="_blank" passHref>
<Image
src="/images/meta-partner.webp"
src={`${baseImagePath}/images/meta-partner.webp`}
alt="Meta-Business-Partner_logo.png"
width={128}
height={122}
Expand All @@ -68,7 +68,7 @@ const GooglePartner = () => {
<>
<Link href={googlePartnersUrl} target="_blank" rel="noopener noreferrer">
<Image
src="/images/google-partner.webp"
src={`${baseImagePath}/images/google-partner.webp`}
alt="google-partner"
width={128}
height={122}
Expand Down
2 changes: 1 addition & 1 deletion sections/Blog/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const BlogCards = () => {
>
<Flex>
<Image
src={blog.imageUrl}
src={`${baseImagePath}${blog.imageUrl}`}
alt="Blog Image"
height={350}
width={450}
Expand Down
4 changes: 2 additions & 2 deletions sections/Partners/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Image from "next/image";
import { useEffect, useState } from "react";
import React from "react";
import { Link } from "react-scroll";
const baseImagePath = "https://appizsoft-static-api.vercel.app/";
const baseImagePath = "https://appizsoft-static-api.vercel.app";

function PartnersSection() {
const defaultWidth = 175;
Expand Down Expand Up @@ -67,7 +67,7 @@ function PartnersSection() {
{partners.map((ref) => (
<Box key={ref.id} p={10}>
<Image
src={ref.logo}
src={`${baseImagePath}${ref.logo}`}
alt={`Reference ${ref.id}`}
width={ref.logoSize.w}
height={ref.logoSize.h}
Expand Down

0 comments on commit 0a5a26f

Please sign in to comment.