From fd78cfbd6aaf62eeda3f1f4e9148a822ef4b23f1 Mon Sep 17 00:00:00 2001 From: Moses Agbe Date: Tue, 14 Apr 2026 13:01:58 +0100 Subject: [PATCH] Add Hero section Signed-off-by: codesage7 --- src/components/Hero.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/components/Hero.tsx 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 +
+ ); +}