Last active
September 1, 2023 01:12
-
-
Save yunsii/de30000aaef45e8e4d71539b2d99d680 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| export const Demo = () => ( | |
| <div className='flex flex-col items-start justify-start md:mt-24 md:flex-row md:items-center md:justify-center md:space-x-6'> | |
| <div className='space-x-2 pb-8 pt-6 md:space-y-5'> | |
| <h1 className='text-6xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 md:border-r-2 md:px-6 md:text-8xl md:leading-14'> | |
| 404 | |
| </h1> | |
| </div> | |
| <div className='max-w-md'> | |
| <p className='mb-4 text-xl font-bold leading-normal md:text-2xl'> | |
| {`Sorry we couldn't find this page.`} | |
| </p> | |
| <p className='mb-8'> | |
| {`But don't worry, you can find plenty of other things on our homepage.`} | |
| </p> | |
| </div> | |
| </div> | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment