-
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
1 parent
cb860ff
commit 7ffb4ff
Showing
9 changed files
with
42 additions
and
6 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { cn } from '../../../lib/utils'; | ||
|
||
export { default as Heading } from './Heading'; | ||
export { default as Paragraph } from './Paragraph'; | ||
export { default as Text } from './Text'; | ||
|
||
export const HeroText = ({ children, className, ...props }) => { | ||
return ( | ||
<h1 className={cn('text-12.5xl leading-16 font-semibold font-agoka text-left', className)} {...props}> | ||
{children} | ||
</h1> | ||
); | ||
}; | ||
|
||
export const PersonalizedText = ({ children, className, ...props }) => { | ||
return ( | ||
<p className={cn('text-base leading-4 font-semibol font-cassandra text-left', className)} {...props}> | ||
{children} | ||
</p> | ||
); | ||
}; |
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
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