ui fix
This commit is contained in:
parent
fb577fdfad
commit
dc5e01c472
@ -24,7 +24,7 @@
|
|||||||
"author": [
|
"author": [
|
||||||
{
|
{
|
||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Jack Landon",
|
"name": "Muslem Rahimi",
|
||||||
"url": "https://stocknear.com/about"
|
"url": "https://stocknear.com/about"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
<script>
|
<script>
|
||||||
import { getImageURL } from "$lib/utils";
|
import { getImageURL } from "$lib/utils";
|
||||||
import SEO from "$lib/components/SEO.svelte";
|
import SEO from "$lib/components/SEO.svelte";
|
||||||
|
import ArticleBreadcrumbStructuredData from "$lib/components/ArticleBreadcrumbStructuredData.svelte";
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
|
|
||||||
let article = data?.getArticle;
|
let article = data?.getArticle;
|
||||||
@ -20,6 +22,16 @@
|
|||||||
: ""}
|
: ""}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<ArticleBreadcrumbStructuredData
|
||||||
|
title={article?.title}
|
||||||
|
datePublished={article.created}
|
||||||
|
dateModified={article?.updated}
|
||||||
|
url={`learning-center/article/${data?.getParams}`}
|
||||||
|
image={article?.cover
|
||||||
|
? getImageURL(article?.collectionId, article?.id, article?.cover)
|
||||||
|
: ""}
|
||||||
|
/>
|
||||||
|
|
||||||
<section
|
<section
|
||||||
class="w-full max-w-3xl sm:max-w-[1400px] overflow-hidden min-h-screen pb-20 pt-5 px-4 lg:px-3"
|
class="w-full max-w-3xl sm:max-w-[1400px] overflow-hidden min-h-screen pb-20 pt-5 px-4 lg:px-3"
|
||||||
>
|
>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user