diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index a5095ca..181dd57 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,28 @@
import type { Metadata } from "next";
-import { Montserrat } from "next/font/google";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Madeira Lounge | Restaurante Mediterranean en Carcaixent, Valencia", description: "Restaurante premium en Carcaixent con cocina mediterránea, cócteles artesanales y terraza acogedora. Reserva tu mesa ahora. 697 67 08 89", keywords: "restaurante Carcaixent, restaurante Valencia, comida mediterránea, cócteles, reservas online, terraza", metadataBase: new URL("https://madeiralounge.es"),
- alternates: {
- canonical: "https://madeiralounge.es"
- },
- openGraph: {
- title: "Madeira Lounge | Sabores Mediterráneos en Carcaixent", description: "Experimenta cocina de calidad, cócteles únicos y ambiente cuidado en nuestra terraza. ¡Reserva tu mesa hoy!", url: "https://madeiralounge.es", siteName: "Madeira Lounge", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg", alt: "Madeira Lounge - Terrace dining experience"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Madeira Lounge | Restaurante en Carcaixent", description: "Reserva tu experiencia mediterránea única. Cócteles artesanales, terraza y cocina fresca.", images: ["http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2a46849..fe77b63 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,7 +9,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
import ContactText from '@/components/sections/contact/ContactText';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
-import { ChefHat, Heart, Leaf, MessageCircle, Smile, Sparkles, Star, Utensils, Users, Wine } from 'lucide-react';
+import { ChefHat, Heart, Leaf, MessageCircle, Smile, Sparkles, Star, Utensils, Users, Wine, Phone, Clock, MapPin } from 'lucide-react';
export default function LandingPage() {
return (
@@ -143,15 +143,15 @@ export default function LandingPage() {