···11+<script>
22+ import { Subheading } from '$lib/components/base/heading';
33+ import Heading from '$lib/components/base/heading/Heading.svelte';
44+ import Prose from '$lib/components/base/prose/Prose.svelte';
55+ import Text from '$lib/components/base/text/Text.svelte';
66+</script>
77+88+<div class="w-full">
99+ <Prose>
1010+ <h2>This is a heading</h2>
1111+ <h3>And a subheading</h3>
1212+ <p>This is my text, see <span class="text-accent-600 dark:text-accent-400 font-semibold">this link</span></p>
1313+ </Prose>
1414+</div>
-7
src/docs/cards/base/CardScrollArea.svelte
···11<script>
22- import Subheading from '$lib/components/base/heading/Subheading.svelte';
33- import ScrollArea from '$lib/components/base/scroll-area/ScrollArea.svelte';
44- import Text from '$lib/components/base/text/Text.svelte';
55-62 let content = `Doggo ipsum puggorino shoob I am bekom fat. Clouds such treat big ol pupper vvv, porgo. Aqua
73 doggo ur givin me a spook corgo heckin good boys heck much ruin diet, ur givin me a spook doggo
84 such treat ur givin me a spook. What a nice floof extremely cuuuuuute waggy wags floofs dat
···3228 heckin snoot, maximum borkdrive wow such tempt you are doin me a concern. Corgo puggorino smol
3329 borking doggo with a long snoot for pats super chub, fat boi h*ck. Dat tungg tho shoob much ruin
3430 diet very jealous pupper, floofs shibe he made many woofs woofer, heckin good boys pupperino.`;
3535-3636- let classes =
3737- 'h-[200px] w-[350px] rounded-2xl border border-base-200 dark:border-base-800 text-base-900 dark:text-base-100 bg-base-100 dark:bg-base-900';
3831</script>
39324033<div class={"h-full w-full text-base-900 dark:text-base-100 px-2 pt-0 overflow-hidden relative"}>
+10
src/docs/preview/base/ProsePreview.svelte
···11+<script lang="ts">
22+ import Prose from '$lib/components/base/prose/Prose.svelte';
33+44+ let { children } = $props();
55+</script>
66+77+<Prose>
88+ {@render children?.()}
99+</Prose>
1010+
-1
src/routes/docs/quick-start/QuickStart.md
···2929You can change the colors to your liking.
30303131```css
3232-/* this is a comment */
3332@source "../node_modules/fox-ui-svelte";
34333534@theme {
+9
src/routes/components/base/prose/+page.svelte
···11+<script>
22+ import ProsePreview from "$docs/preview/base/ProsePreview.svelte";
33+ import Test from "./test.md";
44+55+</script>
66+77+<ProsePreview>
88+ <Test />
99+</ProsePreview>