diff --git a/src/app/page.tsx b/src/app/page.tsx index 6fe62d1..34a354d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,25 @@ import Image from "next/image"; +import Link from 'next/link'; + +// Reusable component for links +const LinkButton = ({ href, target, rel, text, iconSrc, iconAlt, className }: any) => ( + + + {iconAlt} + {text} + + +); export default function Home() { return ( @@ -22,80 +43,56 @@ export default function Home() {
  • Save and see your changes instantly.
  • -
    - - Vercel logomark - Deploy now - - + - Read our docs - + text="Read our docs" + iconSrc="https://nextjs.org/icons/file.svg" + iconAlt="File icon" + />
    ); -} +} \ No newline at end of file