Merge version_1 into main #1
@@ -50,7 +50,7 @@ export default function ContactPage() {
|
||||
variant: "plain",
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sitting-dining-space-terrace-restaurant-with-furniture_114579-2727.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sitting-dining-space-terrace-restaurant-with-furniture_114579-2727.jpg?_wi=2"
|
||||
imageAlt="Shaheen's Fast Foods restaurant location"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
@@ -71,7 +71,7 @@ export default function ContactPage() {
|
||||
name: "Clinton Pietersen",
|
||||
role: "Local Guide",
|
||||
testimonial: "Love the food. Fresh, delicious, and always served hot. Best fast food spot in Mondeor!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-businesswoman-smiling_1262-21181.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-businesswoman-smiling_1262-21181.jpg?_wi=2",
|
||||
imageAlt: "happy customer portrait male",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -80,7 +80,7 @@ export default function ContactPage() {
|
||||
name: "Laveen Oswin",
|
||||
role: "Regular Customer",
|
||||
testimonial: "Amazing takeaway experience. Quick service, friendly staff, and the food is always top quality. Highly recommend!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/funny-overjoyed-attractive-female-laughs-joyfully-being-high-spirit-as-spends-spare-time-company-best-friends-have-fun-together_273609-3591.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/funny-overjoyed-attractive-female-laughs-joyfully-being-high-spirit-as-spends-spare-time-company-best-friends-have-fun-together_273609-3591.jpg?_wi=2",
|
||||
imageAlt: "happy customer portrait female",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -89,7 +89,7 @@ export default function ContactPage() {
|
||||
name: "Teboho Leburu",
|
||||
role: "Happy Customer",
|
||||
testimonial: "Great meals at affordable prices. The staff are welcoming and the portions are generous. Will definitely return!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-african-man-smiling_176420-12613.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-african-man-smiling_176420-12613.jpg?_wi=2",
|
||||
imageAlt: "happy customer portrait diverse",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -98,7 +98,7 @@ export default function ContactPage() {
|
||||
name: "Sarah Johnson",
|
||||
role: "Satisfied Customer",
|
||||
testimonial: "Best burgers in the area! Fresh ingredients, perfectly cooked, and the service is consistently excellent.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg?_wi=2",
|
||||
imageAlt: "happy female customer portrait",
|
||||
icon: Star,
|
||||
},
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
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 "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { DM_Sans } 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 dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Shaheen's Fast Foods - Fresh Fast Food in Johannesburg",
|
||||
description: "Best fast food restaurant in Mondeor, Johannesburg. Fresh burgers, sandwiches, chips & more. Dine-in & takeout available. 6AM-10PM daily. Call +27 83 655 8434",
|
||||
keywords: "fast food, burgers, Johannesburg, Mondeor, takeout, dine-in, sandwiches, chips",
|
||||
metadataBase: new URL("https://shaheensfastfoods.com"),
|
||||
alternates: {
|
||||
canonical: "https://shaheensfastfoods.com",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Shaheen's Fast Foods",
|
||||
description: "Fresh, delicious fast food in Mondeor, Johannesburg",
|
||||
url: "https://shaheensfastfoods.com",
|
||||
siteName: "Shaheen's Fast Foods",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/front-view-delicious-burger-menu-assortment_23-2148868210.jpg",
|
||||
alt: "Fresh burger from Shaheen's Fast Foods",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Shaheen's Fast Foods",
|
||||
description: "Fresh, delicious fast food in Johannesburg",
|
||||
images: ["http://img.b2bpic.net/free-photo/front-view-delicious-burger-menu-assortment_23-2148868210.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -186,7 +186,7 @@ export default function HomePage() {
|
||||
name: "Clinton Pietersen",
|
||||
role: "Local Guide",
|
||||
testimonial: "Love the food. Fresh, delicious, and always served hot. Best fast food spot in Mondeor!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-businesswoman-smiling_1262-21181.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-businesswoman-smiling_1262-21181.jpg?_wi=1",
|
||||
imageAlt: "happy customer portrait male",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -195,7 +195,7 @@ export default function HomePage() {
|
||||
name: "Laveen Oswin",
|
||||
role: "Regular Customer",
|
||||
testimonial: "Amazing takeaway experience. Quick service, friendly staff, and the food is always top quality. Highly recommend!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/funny-overjoyed-attractive-female-laughs-joyfully-being-high-spirit-as-spends-spare-time-company-best-friends-have-fun-together_273609-3591.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/funny-overjoyed-attractive-female-laughs-joyfully-being-high-spirit-as-spends-spare-time-company-best-friends-have-fun-together_273609-3591.jpg?_wi=1",
|
||||
imageAlt: "happy customer portrait female",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -204,7 +204,7 @@ export default function HomePage() {
|
||||
name: "Teboho Leburu",
|
||||
role: "Happy Customer",
|
||||
testimonial: "Great meals at affordable prices. The staff are welcoming and the portions are generous. Will definitely return!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-african-man-smiling_176420-12613.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-african-man-smiling_176420-12613.jpg?_wi=1",
|
||||
imageAlt: "happy customer portrait diverse",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -213,7 +213,7 @@ export default function HomePage() {
|
||||
name: "Sarah Johnson",
|
||||
role: "Satisfied Customer",
|
||||
testimonial: "Best burgers in the area! Fresh ingredients, perfectly cooked, and the service is consistently excellent.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg?_wi=1",
|
||||
imageAlt: "happy female customer portrait",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -231,7 +231,7 @@ export default function HomePage() {
|
||||
description="Located in Mondeor, Johannesburg. Call us for takeaway orders or visit us for dine-in. Open 6:00 AM - 10:00 PM daily."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sitting-dining-space-terrace-restaurant-with-furniture_114579-2727.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sitting-dining-space-terrace-restaurant-with-furniture_114579-2727.jpg?_wi=1"
|
||||
imageAlt="Shaheen's Fast Foods restaurant location"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user