This commit is contained in:
VividTruthKeeper 2023-03-08 01:20:02 +05:00
parent 1b644b5154
commit 1a6af5899f
6 changed files with 118 additions and 126 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

112
dist/assets/index-ffe28ddb.js vendored Normal file

File diff suppressed because one or more lines are too long

4
dist/index.html vendored
View File

@ -6,8 +6,8 @@
<meta name="description" id="meta-description" content="" />
<meta name="keywords" id="meta-keywords" content="" />
<title>Türkmenistan Habarlar Portaly</title>
<script type="module" crossorigin src="/assets/index-d1198b95.js"></script>
<link rel="stylesheet" href="/assets/index-870815be.css">
<script type="module" crossorigin src="/assets/index-ffe28ddb.js"></script>
<link rel="stylesheet" href="/assets/index-72d889a4.css">
</head>
<body>
<div id="root"></div>

View File

@ -44,7 +44,7 @@ const CustomNewsScroll = ({
date={dataEl?.published_at}
categories={dataEl?.categories}
img={dataEl?.featured_images[0]?.path}
video={dataEl.video}
video={{ type: dataEl?.type, url: dataEl?.video }}
/>
);
}
@ -58,7 +58,7 @@ const CustomNewsScroll = ({
date={dataEl?.published_at}
categories={dataEl?.categories}
img={dataEl?.featured_images[0]?.path}
video={dataEl.video}
video={{ type: dataEl?.type, url: dataEl?.video }}
/>
);
}

View File

@ -11,7 +11,7 @@ import { IFeaturedData } from "../../types/store.types";
// Types
interface IProps {
data: IFeaturedData["data"]["data"]["data"];
data: IFeaturedData["data"]["data"];
}
const ContentSlider = ({ data }: IProps) => {