diff --git a/src/components/Hero.tsx b/src/components/Hero.tsx new file mode 100644 index 0000000..5e72f80 --- /dev/null +++ b/src/components/Hero.tsx @@ -0,0 +1,14 @@ +import React from "react"; +import Link from "next/link"; + +export default function Hero() { + return ( +
+

Welcome to MyApp

+

+ This is a demo hero section. Build something amazing with Next.js and Tailwind CSS! +

+ Get Started +
+ ); +}