Merge version_4 into main
Merge version_4 into main
This commit was merged in pull request #8.
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Cerramientos Walter", description: "Especialistas en ventanas de aluminio, cerramientos, rejas y soluciones a medida"};
|
||||
@@ -10,7 +15,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="es">
|
||||
<body>
|
||||
<body className={inter.variable}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
|
||||
@@ -11,8 +11,7 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar
|
||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import WhatsAppButton from "@/components/whatsapp/WhatsAppButton";
|
||||
import { Sparkles, CheckCircle, Shield, Wind, Wrench, Hammer } from "lucide-react";
|
||||
import { Sparkles, CheckCircle, Shield, Wind, Wrench, Hammer, MessageCircle } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
@@ -248,10 +247,15 @@ export default function HomePage() {
|
||||
</div>
|
||||
|
||||
{/* WhatsApp Floating Button */}
|
||||
<WhatsAppButton
|
||||
phoneNumber="5491139493469"
|
||||
message="Hola, quiero consultar por un presupuesto."
|
||||
/>
|
||||
<a
|
||||
href="https://api.whatsapp.com/send?phone=5491139493469&text=Hola%20quiero%20consultar%20por%20un%20presupuesto"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="fixed bottom-6 right-6 z-50 flex items-center justify-center w-14 h-14 bg-green-500 hover:bg-green-600 text-white rounded-full shadow-lg transition-all duration-300 hover:scale-110"
|
||||
aria-label="Contactar por WhatsApp"
|
||||
>
|
||||
<MessageCircle size={24} />
|
||||
</a>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user