diff --git a/src/app/contacto/page.tsx b/src/app/contacto/page.tsx index 7574344..f6f9def 100644 --- a/src/app/contacto/page.tsx +++ b/src/app/contacto/page.tsx @@ -1,16 +1,16 @@ "use client"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import HeroSplit from '@/components/sections/hero/HeroSplit'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import FooterCard from '@/components/sections/footer/FooterCard'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { MapPin, Phone, MessageCircle } from 'lucide-react'; +import { MapPin, Phone, MessageCircle, Clock } from 'lucide-react'; export default function ContactoPage() { const navItems = [ { name: "Inicio", id: "/" }, - { name: "Joyería", id: "/joyeria" }, + { name: "Colecciones", id: "/joyeria" }, { name: "Reparaciones", id: "/reparaciones" }, { name: "Sobre Nosotros", id: "/sobre-nosotros" }, { name: "Contacto", id: "/contacto" }, @@ -30,63 +30,50 @@ export default function ContactoPage() { headingFontWeight="semibold" >
- -
- -
-
- +
+ +
+
@@ -103,4 +90,4 @@ Domingo: Cerrado" ); -} \ No newline at end of file +} diff --git a/src/app/joyeria/page.tsx b/src/app/joyeria/page.tsx index 29867cf..2d70ef2 100644 --- a/src/app/joyeria/page.tsx +++ b/src/app/joyeria/page.tsx @@ -1,8 +1,8 @@ "use client"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterCard from '@/components/sections/footer/FooterCard'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Sparkles, MapPin, Phone, MessageCircle } from 'lucide-react'; @@ -10,7 +10,7 @@ import { Sparkles, MapPin, Phone, MessageCircle } from 'lucide-react'; export default function JoyeriaPage() { const navItems = [ { name: "Inicio", id: "/" }, - { name: "Joyería", id: "/joyeria" }, + { name: "Colecciones", id: "/joyeria" }, { name: "Reparaciones", id: "/reparaciones" }, { name: "Sobre Nosotros", id: "/sobre-nosotros" }, { name: "Contacto", id: "/contacto" }, @@ -30,16 +30,15 @@ export default function JoyeriaPage() { headingFontWeight="semibold" >
-
-
-
@@ -110,4 +110,4 @@ export default function JoyeriaPage() {
); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 50a9cf5..60d232e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Joyería Marilo - Joyas y Relojes en Los Barrios, Cádiz", - description: "Descubre Joyería Marilo, tu joyería de confianza en Los Barrios. Joyas exclusivas, reparaciones de relojes y atención personalizada. Llama o visita.", - keywords: "joyería Los Barrios, joyas Cádiz, reparación relojes, anillos, collares, pulseras, pendientes, joyero Los Barrios, joyería local", - metadataBase: new URL("https://joyeriamarilo.es"), - alternates: { - canonical: "https://joyeriamarilo.es", - }, - openGraph: { - title: "Joyería Marilo - Tu Joyería de Confianza en Los Barrios", - description: "Joyas exclusivas, reparaciones profesionales y atención personalizada. Visítanos en Los Barrios, Cádiz.", - url: "https://joyeriamarilo.es", - siteName: "Joyería Marilo", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-female-talking-phone_23-2148360121.jpg", - alt: "Joyería Marilo - Escaparate de joyas elegantes", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Joyería Marilo - Los Barrios, Cádiz", - description: "Descubre nuestras joyas exclusivas y servicios de reparación de relojes.", - images: ["http://img.b2bpic.net/free-photo/close-up-female-talking-phone_23-2148360121.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Joyería Marilo | Joyas y Reparaciones en Los Barrios, Cádiz", description: "Joyería Marilo ofrece colecciones exclusivas de joyas, reparaciones de relojes y asesoramiento personalizado en Los Barrios, Cádiz. Visítanos o contacta por teléfono y WhatsApp."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}