More styling and slight corrections to copy

fix-build-duplicate-code
David Di Biase 2 years ago
parent b89c0e7418
commit 52ff14df85

@ -23,14 +23,14 @@ export default function TableOfContents() {
return (
<div class="hidden col-start-3 row-start-2 xl:block px-8 py-8 space-y-4 w-[240px] overflow-hidden">
<span class="font-bold uppercase text-xs">On this page</span>
<ul class="space-y-2 text-sm">
<ul class="space-y-4 text-sm">
<Suspense>
<For each={headings()}>
{h => (
<li
classList={{
"ml-2": h.depth === 2,
"ml-4": h.depth === 3
"ml-2 font-semibold text-gray-500": h.depth === 2,
"ml-4 text-gray-400": h.depth === 3
}}
>
<A activeClass="text-blue-400" href={`#${h.slug}`}>

@ -279,7 +279,7 @@ export default function Root() {
<div class="px-8 py-8 h-full container">
<ErrorBoundary>
<Suspense>
<main class="prose prose-md max-w-none w-full pt-0 lg:px-10">
<main class="prose prose-md max-w-none w-full pt-0 pb-10 lg:px-10">
<MDXProvider
components={{
...components,

@ -8,10 +8,10 @@ active: true
# What is SolidStart?
<aside title="Beware of dragons" type="warning">
We are very excited about SolidStart, but it is in beta. There will very likely be **bugs and
We are very excited about SolidStart but it is in beta. There will very likely be **bugs and
missing documentation**. Come at it with a growth attitude, have fun, and don't use it yet for
anything critical. If all this darkness doesn't phase you, press onward, and consider joining the
<a href="https://discord.com/invite/solidjs" target="_blank">discord</a> to ask questions. We would love to meet you.
<a href="https://discord.com/invite/solidjs" target="_blank">Discord</a> to ask questions. We would love to meet you.
</aside>
Web applications often comprise many components: databases, servers, front-ends, bundlers, data fetching/mutations, caching, and infrastructure. Orchestrating these components is challenging and often requires a large amount of shared state and redundant logic across the application stack.
@ -49,4 +49,4 @@ We recommend that you know HTML, CSS, and JavaScript before digging in to SolidS
We're very excited that you're checking out the SolidStart Beta release! Since SolidStart is in beta, you may find some bugs as you explore the framework. We would appreciate if you report these bugs to us using [GitHub Issues](https://github.com/solidjs/solid-start/issues).
Beta means that while we are happy with the current state of the APIs, we are still learning by working with all of you. There is still opportunities for improvement and some changes before we reach 1.0. Thank you all for your patience, and we hope you enjoy exploring what is possible with SolidStart.
Beta means that while we are happy with the current state of the APIs, we are still learning by working with all of you. There is still opportunities for improvement and some changes before we reach 1.0. Thank you all for your patience, and we hope you enjoy exploring what is possible with SolidStart.

Loading…
Cancel
Save