Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b077e3286 | |||
| e8eb923794 | |||
| 8a0cd7deda | |||
| 10a86c5af2 | |||
| 62ff79938c |
@@ -1,16 +1,59 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
|
import { Halant } from "next/font/google";
|
||||||
|
import { Inter } from "next/font/google";
|
||||||
|
import { Public_Sans } from "next/font/google";
|
||||||
|
import "./globals.css";
|
||||||
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
|
const halant = Halant({
|
||||||
|
variable: "--font-halant", subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const publicSans = Public_Sans({
|
||||||
|
variable: "--font-public-sans", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "امجد للاحذيه والشنط", description: "متجر امجد للأحذية والشنط - أفضل الأحذية والشنط بأفضل الأسعار في المنصورة"};
|
title: "امجد للأحذية والشنط - متجر موثوق في المنصورة", description: "متجر امجد المتخصص في بيع الأحذية والشنط الفاخرة للرجال والنساء بأفضل الأسعار في المنصورة. تقييم 5 نجوم من العملاء. اطلب الآن عبر الواتس.", keywords: "أحذية المنصورة، شنط جلدية فاخرة، محل أحذية دقهلية، امجد شنط وأحذية", metadataBase: new URL("https://amgadshoes.eg"),
|
||||||
|
alternates: {
|
||||||
|
canonical: "https://amgadshoes.eg"
|
||||||
|
},
|
||||||
|
openGraph: {
|
||||||
|
title: "امجد للأحذية والشنط - أفضل متجر في المنصورة", description: "اكتشف مجموعتنا الفاخرة من الأحذية والحقائب الجلدية الأصلية بأسعار مناسبة.", url: "https://amgadshoes.eg", siteName: "Amgad Shoes & Bags", type: "website", images: [
|
||||||
|
{
|
||||||
|
url: "http://img.b2bpic.net/free-photo/modern-woman-posing-with-shopping-bags_23-2147893942.jpg", alt: "عرض الأحذية والشنط الفاخرة"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image", title: "امجد للأحذية والشنط", description: "متجر موثوق متخصص في الأحذية والشنط الفاخرة", images: ["http://img.b2bpic.net/free-photo/modern-woman-posing-with-shopping-bags_23-2147893942.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="ar" dir="rtl">
|
<html lang="ar" suppressHydrationWarning dir="rtl">
|
||||||
<body>{children}
|
<ServiceWrapper>
|
||||||
|
<body
|
||||||
|
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||||
|
>
|
||||||
|
<Tag />
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1378,6 +1421,7 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
@@ -18,7 +18,7 @@ export default function LandingPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="compact"
|
contentWidth="compact"
|
||||||
sizing="mediumSizeLargeTitles"
|
sizing="mediumSizeLargeTitles"
|
||||||
background="circleGradient"
|
background="aurora"
|
||||||
cardStyle="gradient-mesh"
|
cardStyle="gradient-mesh"
|
||||||
primaryButtonStyle="primary-glow"
|
primaryButtonStyle="primary-glow"
|
||||||
secondaryButtonStyle="radial-glow"
|
secondaryButtonStyle="radial-glow"
|
||||||
@@ -38,16 +38,16 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardScroll
|
<HeroLogo
|
||||||
title="امجد"
|
logoText="امجد"
|
||||||
description="أفضل الأحذية والشنط بأفضل الأسعار في المنصورة"
|
description="أفضل الأحذية والشنط بأفضل الأسعار في المنصورة"
|
||||||
background={{ variant: "plain" }}
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "تسوق الآن", href: "#products" },
|
{ text: "تسوق الآن", href: "#products" },
|
||||||
{ text: "تواصل عبر واتس", href: "https://wa.me/201055873574" }
|
{ text: "تواصل عبر واتس", href: "https://wa.me/201055873574" }
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/modern-woman-posing-with-shopping-bags_23-2147893942.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/modern-woman-posing-with-shopping-bags_23-2147893942.jpg"
|
||||||
imageAlt="عرض الأحذية والشنط الفاخرة"
|
imageAlt="عرض الأحذية والشنط الفاخرة"
|
||||||
|
showDimOverlay={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -153,10 +153,10 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="زور متجرنا"
|
tag="زور متجرنا"
|
||||||
title="احصل على الاتجاهات إلى متجرنا"
|
title="احصل على الاتجاهات إلى متجرنا"
|
||||||
description="61 قناة السويس، المنصورة (قسم 2)، محافظة الدقهلية، مصر. نفتح يومياً من الساعة 3 مساءً. اتصل أو تواصل عبر الواتس للحجز المسبق. يمكنك أيضاً الوصول إلينا عبر Google Maps: https://maps.google.com/?q=31.0406,31.3769"
|
description="61 قناة السويس، المنصورة (قسم 2)، محافظة الدقهلية، مصر. نفتح يومياً من الساعة 3 مساءً. اتصل أو تواصل عبر الواتس للحجز المسبق."
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/smartphone-with-gps-navigation-app_24877-51533.jpg"
|
imageSrc="http://img.b2bpic.net/free-vector/smartphone-with-gps-navigation-app_24877-51533.jpg"
|
||||||
imageAlt="موقع المتجر"
|
imageAlt="موقع المتجر"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
@@ -179,8 +179,8 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "التواصل", items: [
|
title: "التواصل", items: [
|
||||||
{ label: "الهاتف: +20 10 55873574", href: "tel:+201055873574" },
|
{ label: "الهاتف: +20 10 01055873574", href: "tel:+201001055873574" },
|
||||||
{ label: "واتس آب", href: "https://wa.me/201055873574" },
|
{ label: "واتس آب", href: "https://wa.me/201001055873574" },
|
||||||
{ label: "البريد الإلكتروني", href: "mailto:info@amgadshoes.eg" }
|
{ label: "البريد الإلكتروني", href: "mailto:info@amgadshoes.eg" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user