-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Migrate to tailwind and create blog * blog improvements * update lockfile * remove import * improvements * improvements * fixes * update astro * 0 js * tweaks * remove react astro plugin * remove @fontsource/inter * pin astro to 3.5.3 * fix responsive design * fix responsive design 2 * use video instead of static ui * Nicee * tweaks * tweaks * tweaks * tweaks * wth * mm * okay * lol * metadata * tweak * tweak * add RSS * lock file * Sponsor button * video on readme * typo * update readme * improvements * improvements * mobile padding * fix * fix * fix * improvements * fix * fix * fix * fix * improvements * improvements * improvements * improvements * improvements * improvements * improvements * gradients * use_form * improvements * improvements * improvements * improvements * improvements * hex support * small tweaks * update * update * improvements * tweaks * tweak * revert animation.rs example * fmt
- Loading branch information
Showing
42 changed files
with
3,093 additions
and
1,778 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,5 @@ pnpm-debug.log* | |
|
||
# macOS-specific files | ||
.DS_Store | ||
|
||
.astro |
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,14 +1,19 @@ | ||
import { defineConfig } from 'astro/config'; | ||
|
||
// https://astro.build/config | ||
import react from "@astrojs/react"; | ||
|
||
// https://astro.build/config | ||
import { rehypeAccessibleEmojis } from 'rehype-accessible-emojis'; | ||
import rehypeAutoLinks from 'rehype-autolink-headings'; | ||
import rehypeSlug from 'rehype-slug' | ||
import deno from "@astrojs/deno"; | ||
import tailwind from "@astrojs/tailwind"; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
integrations: [react()], | ||
site: "https://freyaui.dev", | ||
integrations: [tailwind()], | ||
output: "server", | ||
adapter: deno() | ||
adapter: deno(), | ||
markdown: { | ||
rehypePlugins: [rehypeAccessibleEmojis, rehypeSlug, () => rehypeAutoLinks({ | ||
behavior: "append", | ||
})] | ||
} | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"formatter": { | ||
"enabled": true, | ||
"formatWithErrors": false, | ||
"indentStyle": "space", | ||
"indentWidth": 2, | ||
"lineWidth": 80, | ||
"ignore": [] | ||
} | ||
} |
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
Oops, something went wrong.