diff --git a/src/app/page.tsx b/src/app/page.tsx index eb8f82d..42403e1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,4 @@ import { ImageConverter } from "@/components/image-converter"; -import { MadeWithDyad } from "@/components/made-with-dyad"; export default function Home() { return ( @@ -15,9 +14,6 @@ export default function Home() { -
- -
); } \ No newline at end of file diff --git a/src/components/made-with-dyad.tsx b/src/components/made-with-dyad.tsx deleted file mode 100644 index c0c2ef8..0000000 --- a/src/components/made-with-dyad.tsx +++ /dev/null @@ -1,14 +0,0 @@ -export const MadeWithDyad = () => { - return ( -
- - Made with Dyad - -
- ); -};