-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
347 additions
and
107 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Sidebar from '@/components/layout/sidebar' | ||
import HeroTitle from '@/components/ui/hero-title' | ||
import { panda } from '@/styled-system/jsx' | ||
|
||
export default async function () { | ||
return ( | ||
<> | ||
<Sidebar.ContentSection> | ||
<HeroTitle size="xl">Button</HeroTitle> | ||
<panda.p color="gray.fg1" fontSize="xl"> | ||
Trigger an action or event, such as submitting a form or displaying a dialog. | ||
</panda.p> | ||
</Sidebar.ContentSection> | ||
<Sidebar.ContentSection>(WIP)</Sidebar.ContentSection> | ||
</> | ||
) | ||
} |
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,31 @@ | ||
import FullLayout from '@/components/layout/full-layout' | ||
import Sidebar from '@/components/layout/sidebar' | ||
import HeroTitle from '@/components/ui/hero-title' | ||
import type { PropsWithChildren } from 'react' | ||
|
||
export default async function ({ children }: PropsWithChildren) { | ||
return ( | ||
<FullLayout withHeaderLogo> | ||
<Sidebar.Layout> | ||
<Sidebar> | ||
<HeroTitle as="div" size="md"> | ||
Components | ||
</HeroTitle> | ||
<section> | ||
<ul> | ||
<li>Avatar</li> | ||
<li>Badge</li> | ||
<li>Button</li> | ||
<li>Combobox</li> | ||
<li>Checkbox</li> | ||
<li>Input</li> | ||
<li>RadioGroup</li> | ||
<li>Select</li> | ||
</ul> | ||
</section> | ||
</Sidebar> | ||
<Sidebar.Content>{children}</Sidebar.Content> | ||
</Sidebar.Layout> | ||
</FullLayout> | ||
) | ||
} |
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,82 @@ | ||
import FullLayout from '@/components/layout/full-layout' | ||
import Sidebar from '@/components/layout/sidebar' | ||
import HeroTitle from '@/components/ui/hero-title' | ||
import type { PropsWithChildren } from 'react' | ||
|
||
export default async function ({ children }: PropsWithChildren) { | ||
return ( | ||
<FullLayout withHeaderLogo> | ||
<Sidebar.Layout> | ||
<Sidebar> | ||
<HeroTitle as="div" size="md"> | ||
Theme | ||
</HeroTitle> | ||
<section> | ||
<HeroTitle as="div" size="xs"> | ||
Units | ||
</HeroTitle> | ||
<ul> | ||
<li>Root Value</li> | ||
<li>Sizes</li> | ||
<li>Spacings</li> | ||
<li>Z-Indices</li> | ||
</ul> | ||
</section> | ||
<section> | ||
<HeroTitle as="div" size="xs"> | ||
Colors | ||
</HeroTitle> | ||
<ul> | ||
<li>Palette</li> | ||
<li>Gradients</li> | ||
</ul> | ||
</section> | ||
<section> | ||
<HeroTitle as="div" size="xs"> | ||
Borders | ||
</HeroTitle> | ||
<ul> | ||
<li>Radius</li> | ||
<li>Borders</li> | ||
<li>Border Widths</li> | ||
</ul> | ||
</section> | ||
<section> | ||
<HeroTitle as="div" size="xs"> | ||
Effects | ||
</HeroTitle> | ||
<ul> | ||
<li>Blurs</li> | ||
<li>Shadows</li> | ||
<li>Opacity</li> | ||
</ul> | ||
</section> | ||
<section> | ||
<HeroTitle as="div" size="xs"> | ||
Typography | ||
</HeroTitle> | ||
<ul> | ||
<li>Root Size</li> | ||
<li>Font Sizes</li> | ||
<li>Font Weights</li> | ||
<li>Line Heights</li> | ||
<li>Letter Spacings</li> | ||
</ul> | ||
</section> | ||
<section> | ||
<HeroTitle as="div" size="xs"> | ||
Animation | ||
</HeroTitle> | ||
<ul> | ||
<li>Easings</li> | ||
<li>Durations</li> | ||
<li>Keyframes</li> | ||
<li>Animations</li> | ||
</ul> | ||
</section> | ||
</Sidebar> | ||
<Sidebar.Content>{children}</Sidebar.Content> | ||
</Sidebar.Layout> | ||
</FullLayout> | ||
) | ||
} |
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,17 @@ | ||
import Sidebar from '@/components/layout/sidebar' | ||
import HeroTitle from '@/components/ui/hero-title' | ||
import { panda } from '@/styled-system/jsx' | ||
|
||
export default async function () { | ||
return ( | ||
<> | ||
<Sidebar.ContentSection> | ||
<HeroTitle size="xl">Colors</HeroTitle> | ||
<panda.p color="gray.fg1" fontSize="xl"> | ||
Learn how to work with our color system. Right click to copy raw values. | ||
</panda.p> | ||
</Sidebar.ContentSection> | ||
<Sidebar.ContentSection>(WIP)</Sidebar.ContentSection> | ||
</> | ||
) | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
import FullLayout from '@/components/layout/full-layout' | ||
import HeroTitle from '@/components/ui/hero-title' | ||
|
||
export default async function () { | ||
return ( | ||
<div> | ||
<FullLayout withFooter withHeaderLogo> | ||
<HeroTitle>Examples</HeroTitle> | ||
(WIP) | ||
</div> | ||
</FullLayout> | ||
) | ||
} |
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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
import ContainerCentered from '@/components/layout/container-centered' | ||
import FullLayout from '@/components/layout/full-layout' | ||
import HeroTitle from '@/components/ui/hero-title' | ||
|
||
export default async function () { | ||
return ( | ||
<> | ||
<FullLayout withHeaderLogo withBgPattern withFooter> | ||
<ContainerCentered> | ||
<HeroTitle size="xl">Page Not Found</HeroTitle> | ||
<p>The page you are looking for does not exist. Please check the URL in the address bar and try again.</p> | ||
</ContainerCentered> | ||
</> | ||
</FullLayout> | ||
) | ||
} |
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
Oops, something went wrong.