-
Notifications
You must be signed in to change notification settings - Fork 10
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
1 changed file
with
0 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,8 @@ | ||
|
||
import Hero from '../components/Hero'; | ||
export default function Playground() { | ||
return ( | ||
<div className='container py-6'> | ||
<Hero /> | ||
</div> | ||
|
||
import { Heading, HeroText, Paragraph, PersonalizedText, Text } from '../components/shared'; | ||
|
||
import NavBar from '../components/shared/NavBar'; | ||
|
||
export default function Playground() { | ||
return ( | ||
<> | ||
<NavBar /> | ||
<div className='container py-6'> | ||
<HeroText>Hero Text</HeroText> | ||
<PersonalizedText>Personalized Text</PersonalizedText> | ||
<Heading variant='h1'>Heading 1</Heading> | ||
<Heading variant='h2'>Heading 2</Heading> | ||
<Heading variant='h3'>Heading 3</Heading> | ||
<Paragraph variant='body1'>Paragraph body1</Paragraph> | ||
<Paragraph variant='body2'>Paragraph body2</Paragraph> | ||
<Paragraph variant='body3'>Paragraph body3</Paragraph> | ||
<Text variant='button'>Text button</Text> | ||
<Text variant='nav'>Text nav</Text> | ||
<Text variant='navButton'>Text navButton</Text> | ||
<Text variant='footer'>Text footer</Text> | ||
|
||
<Heading variant='h1' className='mt-6'> | ||
Colors | ||
</Heading> | ||
<ul> | ||
<li className='text-primary'>Primary</li> | ||
<li className='text-primary-foreground'>Primary Foreground</li> | ||
<li className='text-primary-yellow'>Primary Yellow</li> | ||
<li className='text-black'>Black</li> | ||
<li className='text-black-foreground'>Black Foreground</li> | ||
</ul> | ||
</div> | ||
</> | ||
|
||
); | ||
} |