From c6c6191aa5dac3007e13f1d95d9b8c7d66df9ce4 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:29:43 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 51 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..f484894 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,51 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { motion } from "framer-motion"; + +export function Hero() { + return ( +
+
+ +
+ + + Construimos la casa de tus sueƱos con transparencia total + + + + + + Viviendas personalizadas en La Plata y Zona Sur. Calidad, confianza y acompaƱamiento real en cada etapa de tu proyecto de vida. + + + + + + + +
+
+
+ ); +}