fix: added fedi link
This commit is contained in:
parent
e4f56c9e1f
commit
8b54503399
3 changed files with 5 additions and 0 deletions
|
@ -14,6 +14,9 @@ const data = await fetchMainPageData()
|
|||
---
|
||||
|
||||
<DefaultLayout>
|
||||
<Fragment slot="head">
|
||||
<link rel="me" href="https://very.stupid.fish/@teidesu" />
|
||||
</Fragment>
|
||||
<PageMainSolid {data}>
|
||||
<RandomWord slot="part-time-words" choices={PARTTIME_VARIANTS} client:idle />
|
||||
<Shoutbox slot="shoutbox" />
|
||||
|
|
|
@ -36,6 +36,7 @@ const finalOg = { ...defaultOgTags, ...og }
|
|||
<title>{title ?? finalOg.title}</title>
|
||||
<ViewTransitions transition:name="slide" />
|
||||
<LoadingIndicator color="var(--text-primary)" />
|
||||
<slot name="head" />
|
||||
</head>
|
||||
<body>
|
||||
<slot />
|
||||
|
|
|
@ -6,6 +6,7 @@ import Header from './Header.astro'
|
|||
---
|
||||
|
||||
<BaseLayout {...Astro.props}>
|
||||
<slot name="head" slot="head" />
|
||||
<div class="app">
|
||||
<div class="content">
|
||||
<Header />
|
||||
|
|
Loading…
Reference in a new issue