diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 04f47c6..43a88ad 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-