-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
1,136 additions
and
1,930 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { defineCollection } from 'astro:content'; | ||
import { docsLoader } from '@astrojs/starlight/loaders'; | ||
import { docsSchema } from '@astrojs/starlight/schema'; | ||
|
||
export const collections = { | ||
docs: defineCollection({ schema: docsSchema() }), | ||
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ title: Kitsune Social | |
description: Kitsune Social is a federated open-source social media server. | ||
template: splash | ||
banner: | ||
content: We finally got a Fediverse account for announcements n' stuffs! <a target="_blank" href="https://floss.social/@kitsune">@[email protected]</a> | ||
content: We finally got a Fediverse account for announcements n' stuffs! <a target="_blank" href="https://floss.social/@kitsune">@[email protected]</a> | ||
hero: | ||
tagline: Experience a new kind of social media. | ||
image: | ||
|
@@ -32,18 +32,21 @@ import { Card, CardGrid } from '@astrojs/starlight/components'; | |
</Card> | ||
|
||
{' '} | ||
|
||
<Card title="No ads or tracking. Ever." icon="seti:ignored"> | ||
Kitsune is free and open-source software. We will never track you, show you | ||
ads, or sell your data. | ||
</Card> | ||
|
||
{' '} | ||
|
||
<Card title="Extensive configurability" icon="setting"> | ||
Make your Kitsune server truly your own with a wide range of configuration | ||
options. | ||
</Card> | ||
|
||
{' '} | ||
|
||
<Card title="Full-text Search" icon="magnifier"> | ||
Search for posts and users using full-text search. We support multiple search | ||
engines, including Meilisearch and native PostgreSQL search. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
{ | ||
"extends": "astro/tsconfigs/strict" | ||
"extends": "astro/tsconfigs/strict", | ||
"include": [".astro/types.d.ts", "**/*"], | ||
"exclude": ["dist"] | ||
} |