From 4931a12d32e715220ccce905904ae1be4fab45a2 Mon Sep 17 00:00:00 2001 From: Will Chen Date: Wed, 21 May 2025 16:13:03 -0700 Subject: [PATCH] Made with Dyad (#220) --- scaffold/src/components/made-with-dyad.tsx | 14 ++++++++++++++ scaffold/src/pages/Index.tsx | 3 +++ 2 files changed, 17 insertions(+) create mode 100644 scaffold/src/components/made-with-dyad.tsx diff --git a/scaffold/src/components/made-with-dyad.tsx b/scaffold/src/components/made-with-dyad.tsx new file mode 100644 index 0000000..c0c2ef8 --- /dev/null +++ b/scaffold/src/components/made-with-dyad.tsx @@ -0,0 +1,14 @@ +export const MadeWithDyad = () => { + return ( +
+ + Made with Dyad + +
+ ); +}; diff --git a/scaffold/src/pages/Index.tsx b/scaffold/src/pages/Index.tsx index 99cd327..cf390f0 100644 --- a/scaffold/src/pages/Index.tsx +++ b/scaffold/src/pages/Index.tsx @@ -1,5 +1,7 @@ // Update this page (the content is just a fallback if you fail to update the page) +import { MadeWithDyad } from "@/components/made-with-dyad"; + const Index = () => { return (
@@ -9,6 +11,7 @@ const Index = () => { Start building your amazing project here!

+ ); };