🚨make biome happy with new stuff
This commit is contained in:
parent
5b5e21e614
commit
eb97ade514
4 changed files with 18 additions and 12 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { AppBskyActorDefs } from "@atproto/api";
|
||||
import type { AppBskyActorDefs } from "@atproto/api";
|
||||
|
||||
import { OEmbedTypes } from "../routes/getOEmbed.ts";
|
||||
import { Layout } from "./Layout.tsx";
|
||||
|
|
@ -12,7 +12,10 @@ interface ProfileProps {
|
|||
export const Profile = ({ profile, url, appDomain }: ProfileProps) => (
|
||||
<Layout url={url}>
|
||||
<meta name="twitter:creator" content={`@${profile.handle}`} />
|
||||
<meta property="og:description" content={profile.description ?? ""} />
|
||||
<meta
|
||||
property="og:description"
|
||||
content={profile.description ?? ""}
|
||||
/>
|
||||
<meta
|
||||
property="og:title"
|
||||
content={`${profile.displayName} (@${profile.handle})`}
|
||||
|
|
@ -21,11 +24,11 @@ export const Profile = ({ profile, url, appDomain }: ProfileProps) => (
|
|||
|
||||
<link
|
||||
type="application/json+oembed"
|
||||
href={`https://${appDomain}/oembed?type=${OEmbedTypes.Profile}&follows=${
|
||||
profile.followsCount
|
||||
}&posts=${profile.postsCount}&avatar=${encodeURIComponent(
|
||||
profile.avatar ?? ""
|
||||
)}`}
|
||||
href={`https://${appDomain}/oembed?type=${
|
||||
OEmbedTypes.Profile
|
||||
}&follows=${profile.followsCount}&posts=${
|
||||
profile.postsCount
|
||||
}&avatar=${encodeURIComponent(profile.avatar ?? "")}`}
|
||||
/>
|
||||
</Layout>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue