diff --git a/app/page.tsx b/app/page.tsx index e0fc546..8239440 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,3 +1,4 @@ +import styles from '@/app/ui/home.module.css'; import AcmeLogo from '@/app/ui/acme-logo'; import { ArrowRightIcon } from '@heroicons/react/24/outline'; import Link from 'next/link'; @@ -11,6 +12,7 @@ export default function Page() {
Welcome to Acme. This is the example for the{' '} diff --git a/app/ui/home.module.css b/app/ui/home.module.css new file mode 100644 index 0000000..41d83ec --- /dev/null +++ b/app/ui/home.module.css @@ -0,0 +1,7 @@ +.shape { + height: 0; + width: 0; + border-bottom: 30px solid black; + border-left: 20px solid transparent; + border-right: 20px solid transparent; +} \ No newline at end of file