Capitalization

This commit is contained in:
Konstantin Wohlwend 2025-02-05 18:36:11 -08:00
parent 238dca3310
commit ccdbb314ea
2 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ export function OnboardingDialog() {
>
<div className="flex flex-col gap-2">
<Typography className="mb-4">
Congratulations on creating your new project! We have automatically created an API key for you. Please copy it to your <InlineCode>.env.local</InlineCode> file. Get more information in the <StyledLink target="_blank" href="https://docs.stack-auth.com">getting started guide</StyledLink>.
Congratulations on creating your new project! We have automatically created an API key for you. Please copy it to your <InlineCode>.env.local</InlineCode> file. Get more information in the <StyledLink target="_blank" href="https://docs.stack-auth.com">Getting Started guide</StyledLink>.
</Typography>
<EnvKeys projectId={project.id} publishableClientKey={apiKey?.publishableClientKey} secretServerKey={apiKey?.secretServerKey} />
<Typography type="label">

View File

@ -32,7 +32,7 @@ And some other variables:
These variables are css variables so you can use the syntax like `hsl(0, 0%, 0%)`, `black`, `#fff`, etc.
The colors can be different for light and dark mode. You can pass these into the `StackTheme` component (in your `layout.tsx` file if you followed the get started guide) as follows:
The colors can be different for light and dark mode. You can pass these into the `StackTheme` component (in your `layout.tsx` file if you followed the Getting Started guide) as follows:
```jsx title="app/layout.tsx"
const theme = {
@ -50,4 +50,4 @@ const theme = {
<StackTheme theme={theme}>
{/* children */}
</StackTheme>
```
```