mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 09:11:38 +00:00
Update image url
Fix anchor style
This commit is contained in:
@ -11,17 +11,21 @@ const Anchor = ({ children, external = true, ...rest }: Props) => {
|
||||
<>
|
||||
<a
|
||||
{...rest}
|
||||
className="inline-block"
|
||||
target={external ? '_blank' : undefined}
|
||||
className={cn(
|
||||
'mx-[2px] text-teal-500 relative',
|
||||
'before:left-0 before:top-[1px] before:block before:absolute',
|
||||
'before:w-full before:h-full before:transition-all before:shadow-underline',
|
||||
'hover:before:shadow-throughline',
|
||||
'dark:text-teal-600'
|
||||
)}
|
||||
>
|
||||
{children}
|
||||
{external && <FiExternalLink className="inline ml-1 mb-[0.2rem]" />}
|
||||
<span
|
||||
className={cn(
|
||||
'mx-[2px] text-teal-500 relative',
|
||||
'before:left-0 before:top-[1px] before:block before:absolute',
|
||||
'before:w-full before:h-full before:transition-all before:shadow-underline',
|
||||
'hover:before:shadow-throughline',
|
||||
'dark:text-teal-600'
|
||||
)}
|
||||
>
|
||||
{children}
|
||||
{external && <FiExternalLink className="inline ml-1 mb-[0.2rem]" />}
|
||||
</span>
|
||||
</a>
|
||||
</>
|
||||
);
|
||||
|
@ -142,7 +142,7 @@ We need set texture to cube box each side. so we need six pictures.
|
||||
|
||||
The skybos is six images that can be connected each other.
|
||||
|
||||

|
||||

|
||||
|
||||
We just need load six images in some order, and set them to the scene background.
|
||||
|
||||
|
@ -52,3 +52,9 @@ The DocSearch frontend UI read result as specific format. We just need to provid
|
||||
Then DocSearch fronted UI can works.
|
||||
|
||||

|
||||
|
||||
So we need post same format to Algolia.
|
||||
|
||||
## Push our data
|
||||
|
||||
Algolia provide JavaScript API Client to push data to Algolia.
|
||||
|
Reference in New Issue
Block a user