Update web search
This commit is contained in:
parent
2db5a5abab
commit
b0a9bffc76
1 changed files with 2 additions and 3 deletions
|
@ -13,7 +13,6 @@ import Answer from "@components/search/Answer.astro";
|
||||||
import RelatedSearches from "@components/search/RelatedSearches.astro";
|
import RelatedSearches from "@components/search/RelatedSearches.astro";
|
||||||
import WebLink from "@components/search/WebLink.astro";
|
import WebLink from "@components/search/WebLink.astro";
|
||||||
import WebLinkSkeleton from "@components/search/WebLinkSkeleton.astro";
|
import WebLinkSkeleton from "@components/search/WebLinkSkeleton.astro";
|
||||||
import { undefined } from "astro:schema";
|
|
||||||
|
|
||||||
// Fetch
|
// Fetch
|
||||||
const QueryString = Astro.url.href.split("web?=").pop() // Get user's search query from URL
|
const QueryString = Astro.url.href.split("web?=").pop() // Get user's search query from URL
|
||||||
|
@ -52,8 +51,8 @@ console.log(ShowRelated + '' + Query.related[0])
|
||||||
<slot slot="sublinks">
|
<slot slot="sublinks">
|
||||||
{query.sublink.map((link) =>
|
{query.sublink.map((link) =>
|
||||||
<a href={link.url}>
|
<a href={link.url}>
|
||||||
<p style="font-size: 18px; text-decoration: none;">{link.title}</p>
|
<p style="font-size: 18px; text-decoration: none; color: inherit !important; transition: 0.8s color;">{link.title}</p>
|
||||||
<p style="font-size: 14px;">{link.url}</p>
|
<p style="font-size: 14px; color: var(--link);">{link.url}</p>
|
||||||
</a>
|
</a>
|
||||||
)}
|
)}
|
||||||
</slot>
|
</slot>
|
||||||
|
|
Loading…
Reference in a new issue