8 Commits

Author SHA1 Message Date
48b816d219 Update src/app/page.tsx 2026-03-05 18:49:10 +00:00
a43c3767fe Update src/app/layout.tsx 2026-03-05 18:49:09 +00:00
72eefd6722 Merge version_2 into main
Merge version_2 into main
2026-03-05 18:47:30 +00:00
e48ac88885 Update src/app/page.tsx 2026-03-05 18:47:26 +00:00
a8442b5cb6 Update src/app/layout.tsx 2026-03-05 18:47:26 +00:00
d0e68ffbe5 Merge version_1 into main
Merge version_1 into main
2026-03-05 18:37:31 +00:00
d5d0b5c769 Merge version_1 into main
Merge version_1 into main
2026-03-05 18:36:45 +00:00
18581a538d Merge version_1 into main
Merge version_1 into main
2026-03-05 18:35:16 +00:00
2 changed files with 17 additions and 62 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 including premium coffee, traditional textiles, handcrafted jewelry, and cultural artifacts."};
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

@@ -166,6 +166,9 @@ export default function HomePage() {
tagIcon={Star}
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Shop Bestsellers", href: "/products" },
]}
testimonials={[
{
id: "1", title: "Authentic Quality & Fast Delivery", quote:
@@ -219,4 +222,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}