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}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7231210..c2c130f 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,20 +1,20 @@
"use client";
-import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
-import HeroSplit from '@/components/sections/hero/HeroSplit';
-import AboutMetric from '@/components/sections/about/AboutMetric';
-import ProductCardOne from '@/components/sections/product/ProductCardOne';
-import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
+import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
+import ProductCardFour from '@/components/sections/product/ProductCardFour';
+import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
-import ContactCenter from '@/components/sections/contact/ContactCenter';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from '@/components/sections/footer/FooterCard';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import { Sparkles, Star, Gem, Wrench, MapPin, Heart, Phone, MessageCircle } from 'lucide-react';
+import { Phone, MessageCircle, MapPin, Quote, ShoppingBag, Wrench, Heart, Star } from 'lucide-react';
export default function HomePage() {
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" },
@@ -34,177 +34,133 @@ export default function HomePage() {
headingFontWeight="semibold"
>
-
-
-
+
+
+
+
+
-
-
+
@@ -221,4 +177,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/reparaciones/page.tsx b/src/app/reparaciones/page.tsx
index 141d953..f963368 100644
--- a/src/app/reparaciones/page.tsx
+++ b/src/app/reparaciones/page.tsx
@@ -1,16 +1,16 @@
"use client";
-import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
-import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
-import ContactCenter from '@/components/sections/contact/ContactCenter';
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from '@/components/sections/footer/FooterCard';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import { Wrench, MapPin, Phone, MessageCircle } from 'lucide-react';
+import { Wrench, Phone, MessageCircle, MapPin, Clock, Shield, Sparkles } from 'lucide-react';
export default function ReparacionesPage() {
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,124 +30,67 @@ export default function ReparacionesPage() {
headingFontWeight="semibold"
>
-
-
-
+
-
-
-
-
-
-
+
+
+
+
+
@@ -164,4 +107,4 @@ export default function ReparacionesPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/sobre-nosotros/page.tsx b/src/app/sobre-nosotros/page.tsx
index bbbeddf..4bac1a8 100644
--- a/src/app/sobre-nosotros/page.tsx
+++ b/src/app/sobre-nosotros/page.tsx
@@ -1,17 +1,18 @@
"use client";
-import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
-import HeroSplit from '@/components/sections/hero/HeroSplit';
-import AboutMetric from '@/components/sections/about/AboutMetric';
-import ContactCenter from '@/components/sections/contact/ContactCenter';
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
+import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
+import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from '@/components/sections/footer/FooterCard';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import { MapPin, Phone, MessageCircle, Award, Users, Heart, Gem } from 'lucide-react';
+import { MapPin, Phone, MessageCircle, Award, Users, Heart, Gem, Quote } from 'lucide-react';
export default function SobreNosotrosPage() {
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" },
@@ -31,68 +32,96 @@ export default function SobreNosotrosPage() {
headingFontWeight="semibold"
>
-
-
-
+
+
+
+
-
@@ -109,4 +138,4 @@ export default function SobreNosotrosPage() {
);
-}
\ No newline at end of file
+}