5 Commits

Author SHA1 Message Date
882d2167d3 Update src/app/page.tsx 2026-03-07 13:02:21 +00:00
b93f5fbb72 Update src/app/layout.tsx 2026-03-07 13:02:20 +00:00
4eafa28d26 Merge version_2 into main
Merge version_2 into main
2026-03-07 13:01:04 +00:00
0c13f8d5eb Merge version_2 into main
Merge version_2 into main
2026-03-07 13:00:19 +00:00
16b469f71d Merge version_2 into main
Merge version_2 into main
2026-03-07 12:59:15 +00:00
2 changed files with 15 additions and 39 deletions

View File

@@ -1,51 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Mulish } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({ const geist = Geist({
variable: "--font-mulish", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Nefis Kebab - Meilleur Kebab à Maurecourt", description: "Découvrez le meilleur kebab à Maurecourt. Ingrédients frais, cuisine turque authentique, accueil chaleureux. Commandez en ligne ou appelez: 01 39 27 85 32", keywords: "kebab Maurecourt, restaurant Maurecourt, kebab near me, cuisine turque, brochettes agneau, merguez", metadataBase: new URL("https://nefis-kebab.local"), title: "Create Next app", description: "Generated by create next app"};
alternates: {
canonical: "https://nefis-kebab.local"},
openGraph: {
title: "Nefis Kebab - Le Meilleur Kebab de Maurecourt", description: "Ingrédients frais, recettes authentiques turques, service amical. Commandez maintenant!", url: "https://nefis-kebab.local", siteName: "Nefis Kebab", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-sliced-delicious-shaurma-meat-sandwich-with-bread-vegetables-black-table_140725-104373.jpg", alt: "Nefis Kebab - Fresh Grilled Kebab"},
],
},
twitter: {
card: "summary_large_image", title: "Nefis Kebab - Meilleur Kebab à Maurecourt", description: "Ingrédients frais, authenticité, accueil chaleureux", images: ["http://img.b2bpic.net/free-photo/top-view-sliced-delicious-shaurma-meat-sandwich-with-bread-vegetables-black-table_140725-104373.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1413,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -10,7 +10,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Heart, Leaf, Star, MapPin } from 'lucide-react'; import { Heart, Leaf, Star, MapPin, Phone } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -116,7 +116,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact" className="bg-white"> <div id="contact" data-section="contact" className="bg-white">
<ContactSplitForm <ContactSplitForm
title="Passez Votre Commande" title="Passez Votre Commande"
description="Appelez-nous au 01 39 27 85 32 ou remplissez le formulaire ci-dessous pour commander en ligne. Nous préparons votre commande avec les ingrédients les plus frais." description="📞 Appelez-nous au 01 39 27 85 32 pour commander directement. Vous pouvez aussi remplir le formulaire ci-dessous pour commander en ligne avec livraison ou retrait sur place. Nous préparons votre commande avec les ingrédients les plus frais."
inputs={[ inputs={[
{ name: "name", type: "text", placeholder: "Votre Nom", required: true }, { name: "name", type: "text", placeholder: "Votre Nom", required: true },
{ name: "phone", type: "tel", placeholder: "Votre Téléphone", required: true }, { name: "phone", type: "tel", placeholder: "Votre Téléphone", required: true },
@@ -205,4 +205,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }