Merge version_1 into main #1
@@ -108,7 +108,7 @@ export default function AboutPage() {
|
||||
role: "Client Régulier",
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-brunette-girl-posing-with-coat_23-2148135993.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-brunette-girl-posing-with-coat_23-2148135993.jpg?_wi=2",
|
||||
imageAlt: "Ahmed Bennani",
|
||||
},
|
||||
{
|
||||
@@ -117,7 +117,7 @@ export default function AboutPage() {
|
||||
role: "Mère de Famille",
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/caucasian-brunette-male-portrait_158595-7921.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/caucasian-brunette-male-portrait_158595-7921.jpg?_wi=2",
|
||||
imageAlt: "Fatima Alaoui",
|
||||
},
|
||||
{
|
||||
@@ -126,7 +126,7 @@ export default function AboutPage() {
|
||||
role: "Homme d'Affaires",
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyful-business-woman-with-coffee-cup_23-2148095746.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyful-business-woman-with-coffee-cup_23-2148095746.jpg?_wi=2",
|
||||
imageAlt: "Mohammed Idrissi",
|
||||
},
|
||||
{
|
||||
@@ -135,7 +135,7 @@ export default function AboutPage() {
|
||||
role: "Étudiante",
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-posing_176420-15592.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-posing_176420-15592.jpg?_wi=2",
|
||||
imageAlt: "Leila Boussaid",
|
||||
},
|
||||
{
|
||||
@@ -144,7 +144,7 @@ export default function AboutPage() {
|
||||
role: "Professionnel",
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg?_wi=2",
|
||||
imageAlt: "Hassan Ouarzouan",
|
||||
},
|
||||
{
|
||||
@@ -153,7 +153,7 @@ export default function AboutPage() {
|
||||
role: "Cadre",
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg?_wi=2",
|
||||
imageAlt: "Nadia Zemmouri",
|
||||
},
|
||||
]}
|
||||
@@ -182,7 +182,7 @@ export default function AboutPage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg?_wi=4"
|
||||
imageAlt="Fresh & Fast"
|
||||
logoText="Fresh & Fast"
|
||||
copyrightText="© 2025 Fresh & Fast. Tous droits réservés. Boulevard Mohamed V, Berrechid, Maroc."
|
||||
|
||||
@@ -86,7 +86,7 @@ export default function ContactPage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg?_wi=5"
|
||||
imageAlt="Fresh & Fast"
|
||||
logoText="Fresh & Fast"
|
||||
copyrightText="© 2025 Fresh & Fast. Tous droits réservés. Boulevard Mohamed V, Berrechid, Maroc."
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight",
|
||||
@@ -20,6 +24,39 @@ const interTight = Inter_Tight({
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Fresh & Fast - Restaurant Fast-Food Berrechid | Burgers Frais & Rapides",
|
||||
description: "Fresh & Fast : Restaurant fast-food à Berrechid. Découvrez nos délicieux burgers, sandwichs et accompagnements préparés avec des ingrédients frais. Service rapide et accueil chaleureux.",
|
||||
keywords: "fast-food Berrechid, burgers frais, sandwichs, restaurant rapide, nourriture rapide Maroc, commande en ligne",
|
||||
metadataBase: new URL("https://freshandfastberrechid.ma"),
|
||||
alternates: {
|
||||
canonical: "https://freshandfastberrechid.ma",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Fresh & Fast - Restaurant Fast-Food Berrechid",
|
||||
description: "Goûtez à nos délicieux burgers et sandwichs préparés avec des ingrédients frais. Service rapide à Berrechid, Maroc.",
|
||||
url: "https://freshandfastberrechid.ma",
|
||||
siteName: "Fresh & Fast",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg",
|
||||
alt: "Fresh & Fast Burger",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Fresh & Fast - Burgers Frais & Rapides à Berrechid",
|
||||
description: "Découvrez Fresh & Fast, le restaurant fast-food de qualité à Berrechid. Service rapide, ingrédients frais, accueil chaleureux.",
|
||||
images: ["http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,7 +65,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${interTight.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -85,7 +85,7 @@ export default function MenuPage() {
|
||||
title="Notre Menu Complet"
|
||||
description="Découvrez tous nos délices : burgers gourmands, sandwichs savoureux, accompagnements croustillants, boissons rafraîchissantes et desserts irrésistibles. Chaque repas est préparé avec des ingrédients frais pour votre satisfaction."
|
||||
background={{ variant: "plain" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cheeseburger-with-glass-cola_140725-6073.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cheeseburger-with-glass-cola_140725-6073.jpg?_wi=2"
|
||||
imageAlt="Menu Fresh & Fast"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -113,7 +113,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "284",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/cheeseburger-with-glass-cola_140725-6073.jpg",
|
||||
"http://img.b2bpic.net/free-photo/cheeseburger-with-glass-cola_140725-6073.jpg?_wi=3",
|
||||
imageAlt: "Burger Classique",
|
||||
},
|
||||
{
|
||||
@@ -124,7 +124,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "312",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/three-mini-burgers-served-with-fries-wood-serving-board_140725-2585.jpg",
|
||||
"http://img.b2bpic.net/free-photo/three-mini-burgers-served-with-fries-wood-serving-board_140725-2585.jpg?_wi=2",
|
||||
imageAlt: "Cheeseburger",
|
||||
},
|
||||
{
|
||||
@@ -135,7 +135,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "198",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/front-view-beef-burger-with-salad-bacon_23-2148784490.jpg",
|
||||
"http://img.b2bpic.net/free-photo/front-view-beef-burger-with-salad-bacon_23-2148784490.jpg?_wi=2",
|
||||
imageAlt: "Double Burger",
|
||||
},
|
||||
{
|
||||
@@ -146,7 +146,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "267",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/delicious-food-presentation_23-2151914040.jpg",
|
||||
"http://img.b2bpic.net/free-photo/delicious-food-presentation_23-2151914040.jpg?_wi=2",
|
||||
imageAlt: "Burger Bacon",
|
||||
},
|
||||
{
|
||||
@@ -157,7 +157,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "245",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/overhead-view-red-lipstick-food-purple-flower-wooden-table-photo-big-plate-with-tasty-salad-beans-standing-beside-glass-smoothie_291049-1807.jpg",
|
||||
"http://img.b2bpic.net/free-photo/overhead-view-red-lipstick-food-purple-flower-wooden-table-photo-big-plate-with-tasty-salad-beans-standing-beside-glass-smoothie_291049-1807.jpg?_wi=2",
|
||||
imageAlt: "Burger Gourmand",
|
||||
},
|
||||
{
|
||||
@@ -168,7 +168,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "156",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143257.jpg",
|
||||
"http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143257.jpg?_wi=2",
|
||||
imageAlt: "Burger Végétal",
|
||||
},
|
||||
]}
|
||||
@@ -197,7 +197,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "267",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/delicious-food-presentation_23-2151914040.jpg",
|
||||
"http://img.b2bpic.net/free-photo/delicious-food-presentation_23-2151914040.jpg?_wi=3",
|
||||
imageAlt: "Sandwich Poulet",
|
||||
},
|
||||
{
|
||||
@@ -208,7 +208,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "245",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/overhead-view-red-lipstick-food-purple-flower-wooden-table-photo-big-plate-with-tasty-salad-beans-standing-beside-glass-smoothie_291049-1807.jpg",
|
||||
"http://img.b2bpic.net/free-photo/overhead-view-red-lipstick-food-purple-flower-wooden-table-photo-big-plate-with-tasty-salad-beans-standing-beside-glass-smoothie_291049-1807.jpg?_wi=3",
|
||||
imageAlt: "Sandwich Kebab",
|
||||
},
|
||||
{
|
||||
@@ -219,7 +219,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "156",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143257.jpg",
|
||||
"http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143257.jpg?_wi=3",
|
||||
imageAlt: "Sandwich Thon",
|
||||
},
|
||||
{
|
||||
@@ -263,7 +263,7 @@ export default function MenuPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg?_wi=3"
|
||||
imageAlt="Fresh & Fast"
|
||||
logoText="Fresh & Fast"
|
||||
copyrightText="© 2025 Fresh & Fast. Tous droits réservés. Boulevard Mohamed V, Berrechid, Maroc."
|
||||
|
||||
@@ -108,7 +108,7 @@ export default function HomePage() {
|
||||
{ text: "Commander", href: "/menu" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg?_wi=1"
|
||||
imageAlt="Delicious Fresh Burger"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -188,7 +188,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "284",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/cheeseburger-with-glass-cola_140725-6073.jpg",
|
||||
"http://img.b2bpic.net/free-photo/cheeseburger-with-glass-cola_140725-6073.jpg?_wi=1",
|
||||
imageAlt: "Burger Classique",
|
||||
},
|
||||
{
|
||||
@@ -199,7 +199,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "312",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/three-mini-burgers-served-with-fries-wood-serving-board_140725-2585.jpg",
|
||||
"http://img.b2bpic.net/free-photo/three-mini-burgers-served-with-fries-wood-serving-board_140725-2585.jpg?_wi=1",
|
||||
imageAlt: "Cheeseburger",
|
||||
},
|
||||
{
|
||||
@@ -210,7 +210,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "198",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/front-view-beef-burger-with-salad-bacon_23-2148784490.jpg",
|
||||
"http://img.b2bpic.net/free-photo/front-view-beef-burger-with-salad-bacon_23-2148784490.jpg?_wi=1",
|
||||
imageAlt: "Double Burger",
|
||||
},
|
||||
{
|
||||
@@ -221,7 +221,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "267",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/delicious-food-presentation_23-2151914040.jpg",
|
||||
"http://img.b2bpic.net/free-photo/delicious-food-presentation_23-2151914040.jpg?_wi=1",
|
||||
imageAlt: "Sandwich Poulet",
|
||||
},
|
||||
{
|
||||
@@ -232,7 +232,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "245",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/overhead-view-red-lipstick-food-purple-flower-wooden-table-photo-big-plate-with-tasty-salad-beans-standing-beside-glass-smoothie_291049-1807.jpg",
|
||||
"http://img.b2bpic.net/free-photo/overhead-view-red-lipstick-food-purple-flower-wooden-table-photo-big-plate-with-tasty-salad-beans-standing-beside-glass-smoothie_291049-1807.jpg?_wi=1",
|
||||
imageAlt: "Sandwich Kebab",
|
||||
},
|
||||
{
|
||||
@@ -243,7 +243,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "156",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143257.jpg",
|
||||
"http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143257.jpg?_wi=1",
|
||||
imageAlt: "Sandwich Thon",
|
||||
},
|
||||
]}
|
||||
@@ -340,7 +340,7 @@ export default function HomePage() {
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-brunette-girl-posing-with-coat_23-2148135993.jpg",
|
||||
"http://img.b2bpic.net/free-photo/smiling-brunette-girl-posing-with-coat_23-2148135993.jpg?_wi=1",
|
||||
imageAlt: "Ahmed Bennani",
|
||||
},
|
||||
{
|
||||
@@ -350,7 +350,7 @@ export default function HomePage() {
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/caucasian-brunette-male-portrait_158595-7921.jpg",
|
||||
"http://img.b2bpic.net/free-photo/caucasian-brunette-male-portrait_158595-7921.jpg?_wi=1",
|
||||
imageAlt: "Fatima Alaoui",
|
||||
},
|
||||
{
|
||||
@@ -360,7 +360,7 @@ export default function HomePage() {
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/joyful-business-woman-with-coffee-cup_23-2148095746.jpg",
|
||||
"http://img.b2bpic.net/free-photo/joyful-business-woman-with-coffee-cup_23-2148095746.jpg?_wi=1",
|
||||
imageAlt: "Mohammed Idrissi",
|
||||
},
|
||||
{
|
||||
@@ -370,7 +370,7 @@ export default function HomePage() {
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-handsome-young-man-posing_176420-15592.jpg",
|
||||
"http://img.b2bpic.net/free-photo/portrait-handsome-young-man-posing_176420-15592.jpg?_wi=1",
|
||||
imageAlt: "Leila Boussaid",
|
||||
},
|
||||
{
|
||||
@@ -380,7 +380,7 @@ export default function HomePage() {
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg",
|
||||
"http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg?_wi=1",
|
||||
imageAlt: "Hassan Ouarzouan",
|
||||
},
|
||||
{
|
||||
@@ -390,7 +390,7 @@ export default function HomePage() {
|
||||
company: "Berrechid",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg",
|
||||
"http://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg?_wi=1",
|
||||
imageAlt: "Nadia Zemmouri",
|
||||
},
|
||||
]}
|
||||
@@ -449,7 +449,7 @@ export default function HomePage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-person-holding-plate-with-burger_23-2148784519.jpg?_wi=2"
|
||||
imageAlt="Fresh & Fast"
|
||||
logoText="Fresh & Fast"
|
||||
copyrightText="© 2025 Fresh & Fast. Tous droits réservés. Boulevard Mohamed V, Berrechid, Maroc."
|
||||
|
||||
Reference in New Issue
Block a user