Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e48ac88885 | |||
| a8442b5cb6 | |||
| d0e68ffbe5 | |||
| d5d0b5c769 | |||
| 18581a538d |
@@ -1,74 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Roboto } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const roboto = Roboto({
|
|
||||||
variable: "--font-roboto",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["100", "300", "400", "500", "700", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Sheger Shop - Authentic Ethiopian Products & Crafts",
|
title: "Sheger Shop - Authentic Ethiopian Products", description: "Discover authentic Ethiopian products - from premium coffee and traditional textiles to handcrafted jewelry and cultural artifacts. Trusted by 50K+ customers. Fair-trade certified artisans."};
|
||||||
description: "Explore authentic Ethiopian coffee, textiles, jewelry, pottery, and spices. Secure shopping with Telebirr, bank transfer, Visa & Mastercard payment options.",
|
|
||||||
keywords: "Ethiopian products, Ethiopian coffee, African crafts, Telebirr payment, traditional textiles, authentic spices",
|
|
||||||
metadataBase: new URL("https://shegershop.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://shegershop.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Sheger Shop - Authentic Ethiopian Products",
|
|
||||||
description: "Premium Ethiopian products with secure payment options including Telebirr and international cards. Shop coffee, textiles, jewelry, and more.",
|
|
||||||
url: "https://shegershop.com",
|
|
||||||
siteName: "Sheger Shop",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/mexican-culture-with-colorful-materials_23-2149672969.jpg",
|
|
||||||
alt: "Ethiopian Cultural Heritage",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Sheger Shop - Authentic Ethiopian Products",
|
|
||||||
description: "Discover authentic Ethiopian coffee, textiles, jewelry, pottery & spices. Multiple secure payment methods available.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/mexican-culture-with-colorful-materials_23-2149672969.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="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1437,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -110,7 +110,7 @@ export default function HomePage() {
|
|||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardTwo
|
<ProductCardTwo
|
||||||
title="Featured Products"
|
title="Featured Products"
|
||||||
description="Explore our curated selection of authentic Ethiopian products handpicked for quality and authenticity"
|
description="Explore our curated selection of authentic Ethiopian products handpicked for quality and authenticity. Trusted by 50K+ customers. Fair-trade certified artisans."
|
||||||
tag="Best Sellers"
|
tag="Best Sellers"
|
||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
|||||||
Reference in New Issue
Block a user