Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a91876885f | |||
| 2b077e3286 | |||
| e8eb923794 | |||
| 8a0cd7deda | |||
| 10a86c5af2 | |||
| 62ff79938c |
@@ -1,16 +1,59 @@
|
||||
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 = {
|
||||
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({
|
||||
children,
|
||||
}: {
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
}>) {
|
||||
return (
|
||||
<html lang="ar" dir="rtl">
|
||||
<body>{children}
|
||||
<html lang="ar" suppressHydrationWarning dir="rtl">
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1378,6 +1421,7 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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 ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
@@ -18,7 +18,7 @@ export default function LandingPage() {
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
background="aurora"
|
||||
cardStyle="gradient-mesh"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
@@ -38,16 +38,16 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
title="امجد"
|
||||
<HeroLogo
|
||||
logoText="امجد"
|
||||
description="أفضل الأحذية والشنط بأفضل الأسعار في المنصورة"
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "تسوق الآن", href: "#products" },
|
||||
{ text: "تواصل عبر واتس", href: "https://wa.me/201055873574" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-woman-posing-with-shopping-bags_23-2147893942.jpg"
|
||||
imageAlt="عرض الأحذية والشنط الفاخرة"
|
||||
showDimOverlay={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -153,10 +153,10 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
tag="زور متجرنا"
|
||||
title="احصل على الاتجاهات إلى متجرنا"
|
||||
description="61 قناة السويس، المنصورة (قسم 2)، محافظة الدقهلية، مصر. نفتح يومياً من الساعة 3 مساءً. اتصل أو تواصل عبر الواتس للحجز المسبق. يمكنك أيضاً الوصول إلينا عبر Google Maps: https://maps.google.com/?q=31.0406,31.3769"
|
||||
background={{ variant: "plain" }}
|
||||
description="61 قناة السويس، المنصورة (قسم 2)، محافظة الدقهلية، مصر. نفتح يومياً من الساعة 3 مساءً. اتصل أو تواصل عبر الواتس للحجز المسبق."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
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="موقع المتجر"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -179,8 +179,8 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
title: "التواصل", items: [
|
||||
{ label: "الهاتف: +20 10 55873574", href: "tel:+201055873574" },
|
||||
{ label: "واتس آب", href: "https://wa.me/201055873574" },
|
||||
{ label: "الهاتف: +20 10 01055873574", href: "tel:+201001055873574" },
|
||||
{ label: "واتس آب", href: "https://wa.me/201001055873574" },
|
||||
{ label: "البريد الإلكتروني", href: "mailto:info@amgadshoes.eg" }
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user