From 5d1c5fadaabe78a6642ddd8ce82ad3f865c04bb0 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:05:29 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 48 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..8442e34 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,48 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import Image from "next/image"; + +export function Hero() { + return ( +
+ +
+
+ + The Essence of Colombian Coffee + + + Directly from the heart of Quindío. Experience 30 years of tradition, + sustainability, and the finest hand-selected beans delivered to your doorstep in the USA. + +
+ + +
+
+
+ Fresh Colombian Coffee +
+
+
+
+ + + +
+
+ ); +}