Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 18:47:30 +00:00
2 changed files with 15 additions and 63 deletions

View File

@@ -1,75 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } 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 halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Sheger Shop - Authentic Ethiopian Products & Crafts",
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,
},
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1437,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -110,7 +110,7 @@ export default function HomePage() {
<div id="products" data-section="products">
<ProductCardTwo
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"
tagIcon={Star}
textboxLayout="default"
@@ -219,4 +219,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}