Merge version_2 into main #4
@@ -1,59 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Open_Sans } 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 openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Profitable Fried Chicken Restaurant for Sale in Egypt | Investment Opportunity",
|
||||
description: "Turn-key fried chicken restaurant for sale in Cairo. Established business, EGP 10.2M annual revenue, 35-40% net profit. Prime location, proven systems. Investor opportunity.",
|
||||
keywords: "restaurant for sale Egypt, fast food business investment Egypt, fried chicken franchise Egypt, Cairo restaurant business",
|
||||
metadataBase: new URL("https://www.elitichchickenegy.com"),
|
||||
alternates: {
|
||||
canonical: "https://www.elitichchickenegy.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Elite Chicken Egypt - Profitable Restaurant Investment",
|
||||
description: "Prime fast-food investment opportunity in Cairo. Established revenue model, strong unit economics, scalable operations.",
|
||||
url: "https://www.elitichchickenegy.com",
|
||||
siteName: "Elite Chicken Egypt",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/closeup-hamburgers-wooden-tray-with-blurred-background_181624-2322.jpg",
|
||||
alt: "Elite Chicken Egypt Restaurant",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Profitable Fried Chicken Restaurant for Sale in Egypt",
|
||||
description: "Investment-ready fast-food business with proven profitability and growth potential.",
|
||||
images: ["http://img.b2bpic.net/free-photo/juicy-chicken-burger-with-fresh-lettuce-crispy-french-fries-wooden-board_181624-50895.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Elite Chicken Egypt - Investment Opportunity", description: "Profitable fried chicken restaurant for sale in Egypt. Prime location, established customer base, proven revenue model."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -58,15 +58,20 @@ export default function HomePage() {
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-hamburgers-wooden-tray-with-blurred-background_181624-2322.jpg", imageAlt: "Elite Chicken Egypt Restaurant Storefront"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-hamburgers-wooden-tray-with-blurred-background_181624-2322.jpg", imageAlt: "Elite Chicken Egypt Restaurant Storefront"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/juicy-chicken-burger-with-fresh-lettuce-crispy-french-fries-wooden-board_181624-50895.jpg", imageAlt: "Premium Fried Chicken Meal"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/juicy-chicken-burger-with-fresh-lettuce-crispy-french-fries-wooden-board_181624-50895.jpg", imageAlt: "Premium Fried Chicken Meal"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/event-hall-wooden-table-with-rustic-chairs_114579-2233.jpg", imageAlt: "Modern Restaurant Interior"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/event-hall-wooden-table-with-rustic-chairs_114579-2233.jpg", imageAlt: "Modern Restaurant Interior"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-courier-riding-bike-while-delivering-takeaway-food-meal-client-checking-adreess-phone-takeout-app-standing-yellow-background-studio-take-out-service-concept_482257-68965.jpg?_wi=1", imageAlt: "Delivery Operations"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-courier-riding-bike-while-delivering-takeaway-food-meal-client-checking-adreess-phone-takeout-app-standing-yellow-background-studio-take-out-service-concept_482257-68965.jpg?_wi=1", imageAlt: "Delivery Operations"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-friends-communicating-while-having-lunch-drinking-wine-dining-room-focus-is-african-american-woman_637285-5486.jpg", imageAlt: "Satisfied Customers"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-friends-communicating-while-having-lunch-drinking-wine-dining-room-focus-is-african-american-woman_637285-5486.jpg", imageAlt: "Satisfied Customers"
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Request Business Details", href: "/contact" },
|
||||
@@ -82,13 +87,17 @@ export default function HomePage() {
|
||||
tag="Business Metrics"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "EGP 850K+", description: "Average monthly revenue from dine-in, delivery, and catering operations"},
|
||||
id: "1", value: "35-40%", description: "Net profit margin demonstrating operational efficiency and pricing power"
|
||||
},
|
||||
{
|
||||
id: "2", value: "35-40%", description: "Net profit margin demonstrating operational efficiency and pricing power"},
|
||||
id: "2", value: "EGP 850K+", description: "Average monthly revenue from dine-in, delivery, and catering operations"
|
||||
},
|
||||
{
|
||||
id: "3", value: "5+ Years", description: "Established operations with loyal customer base and proven market presence"},
|
||||
id: "3", value: "5+ Years", description: "Established operations with loyal customer base and proven market presence"
|
||||
},
|
||||
{
|
||||
id: "4", value: "10,000+", description: "Monthly customer visits across all service channels"},
|
||||
id: "4", value: "10,000+", description: "Monthly customer visits across all service channels"
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -135,13 +144,17 @@ export default function HomePage() {
|
||||
author="Ahmed Hassan, Business Investor & Former Restaurant Owner"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Investor testimonial 1"},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Investor testimonial 1"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", alt: "Customer testimonial 2"},
|
||||
src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", alt: "Customer testimonial 2"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Customer testimonial 3"},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Customer testimonial 3"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", alt: "Customer testimonial 4"},
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", alt: "Customer testimonial 4"
|
||||
},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -211,4 +224,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user