import { ButtonCommon, Layout } from 'src/components/common' import { IconBuy } from 'src/components/icons' import { ButonType, ButtonSize } from 'src/utils/constanst.utils' export default function Home() { return ( <>
This is home page
Button default {ButonType.light} - Button light {ButonType.light} - Button light {ButonType.light} - Button light {ButtonSize.large} - Button default large } disabled>Button with icon disabled } type={ButonType.light}>Button with icon

Go to pages/index.tsx to get your hand dirty!

Go to src/components to make your awesome component!

Go to src/styles to find global styles!

) } Home.Layout = Layout