Skip to content

Commit

Permalink
fix document home format (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
4leite authored Jun 17, 2024
1 parent 28307f1 commit f94ca2d
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 22 deletions.
22 changes: 22 additions & 0 deletions apps/documentation/src/components/home.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
export function Home() {
return (
<div className="flex justify-center pt-10">
<div className="prose dark:prose-invert">
<h1>OberonCMS</h1>
<p>
An extensible content management system for developers, designers and
content creators.
</p>
<p>
Get started quickly, for free on the platform of your choice. Use our
plugins or build your own to customise the OberonCMS to your needs.
</p>
<p>
We're still building out the core capabilities and
[documentation](/docs/about), but we're excited to see what you can do
with it.
</p>
</div>
</div>
)
}
21 changes: 3 additions & 18 deletions apps/documentation/src/pages/index.mdx
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
<div className="flex justify-center pt-10">
<div className="prose dark:prose-invert">
<h1>OberonCMS</h1>
<p>
An extensible content management system for developers, designers and
content creators.
</p>
<p>
Get started quickly, for free on the platform of your choice. Use our
plugins or build your own to customise the OberonCMS to your needs.
</p>
<p>
We're still building out the core capabilities and
[documentation](/docs/about), but we're excited to see what you can do
with it.
</p>
</div>
</div>
import { Home } from "@/components/home"

<Home />
2 changes: 1 addition & 1 deletion apps/documentation/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Next.js",
"extends": "../../tsconfig.json",
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
Expand Down
2 changes: 1 addition & 1 deletion apps/playground/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Next.js",
"extends": "../../tsconfig.json",
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
Expand Down
2 changes: 1 addition & 1 deletion apps/rich-text-demo/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Next.js",
"extends": "../../tsconfig.json",
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-oberon-app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.json",
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist"
Expand Down

0 comments on commit f94ca2d

Please sign in to comment.