Merge version_1 into main #1
@@ -61,7 +61,7 @@ export default function AboutPage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1kuy27"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1kuy27&_wi=3"
|
||||
imageAlt="Ethiopian artisans crafting together"
|
||||
mediaAnimation="blur-reveal"
|
||||
frameStyle="card"
|
||||
@@ -78,7 +78,7 @@ export default function AboutPage() {
|
||||
tagAnimation="slide-up"
|
||||
buttons={[{ text: "Start Your Journey", href: "/for-sellers" }]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1kuy27"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1kuy27&_wi=4"
|
||||
imageAlt="Ethiopian artisans working together"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="About EthioDirect mission"
|
||||
|
||||
@@ -61,7 +61,7 @@ export default function SellersPage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1kuy27"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1kuy27&_wi=2"
|
||||
imageAlt="Ethiopian artisans at work"
|
||||
mediaAnimation="blur-reveal"
|
||||
frameStyle="card"
|
||||
@@ -194,7 +194,7 @@ export default function SellersPage() {
|
||||
role: "Master Weaver",
|
||||
company: "Addis Textile Cooperative",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=luqnw0",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=luqnw0&_wi=2",
|
||||
imageAlt: "Amara Tekle testimonial",
|
||||
},
|
||||
{
|
||||
@@ -203,7 +203,7 @@ export default function SellersPage() {
|
||||
role: "Leather Craftsman",
|
||||
company: "Hailu Fine Leather",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dufmly",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dufmly&_wi=2",
|
||||
imageAlt: "Demissie Hailu testimonial",
|
||||
},
|
||||
{
|
||||
@@ -212,7 +212,7 @@ export default function SellersPage() {
|
||||
role: "Coffee Farmer & Processor",
|
||||
company: "Yirgacheffe Highlands Farm",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2op3fo",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2op3fo&_wi=2",
|
||||
imageAlt: "Marta Worku testimonial",
|
||||
},
|
||||
{
|
||||
@@ -221,7 +221,7 @@ export default function SellersPage() {
|
||||
role: "Jewelry Artisan",
|
||||
company: "Heritage Gold Studio",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1apzvr",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1apzvr&_wi=2",
|
||||
imageAlt: "Girma Abebe testimonial",
|
||||
},
|
||||
{
|
||||
@@ -230,7 +230,7 @@ export default function SellersPage() {
|
||||
role: "Traditional Weaver",
|
||||
company: "Kebede Heritage Textiles",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=luqnw0",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=luqnw0&_wi=3",
|
||||
imageAlt: "Hiwot Kebede testimonial",
|
||||
},
|
||||
{
|
||||
@@ -239,7 +239,7 @@ export default function SellersPage() {
|
||||
role: "Leather Artisan",
|
||||
company: "Bekele Craft Studio",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dufmly",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dufmly&_wi=3",
|
||||
imageAlt: "Yohannes Bekele testimonial",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,50 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "EthioDirect - Premium Ethiopian Artisan Marketplace",
|
||||
description: "Discover authentic Ethiopian crafts: handwoven Habesha Kemis, luxury leather goods, and specialty coffee from verified artisans. Fair trade. Global shipping.",
|
||||
keywords: "Ethiopian marketplace, Habesha Kemis, Ethiopian leather, specialty coffee, artisan crafts, fair trade, diaspora commerce",
|
||||
metadataBase: new URL("https://ethiodirect.com"),
|
||||
alternates: {
|
||||
canonical: "https://ethiodirect.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "EthioDirect - Premium Ethiopian Artisan Marketplace",
|
||||
description: "Connect with verified Ethiopian artisans. Premium handcrafted goods. Global reach. Fair pricing.",
|
||||
url: "https://ethiodirect.com",
|
||||
siteName: "EthioDirect",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "EthioDirect Marketplace",
|
||||
description: "Authentic Ethiopian crafts from verified artisans worldwide",
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +53,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +67,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -68,7 +68,7 @@ export default function MarketplacePage() {
|
||||
name: "Handwoven Habesha Kemis - White & Gold",
|
||||
price: "$249",
|
||||
variant: "Premium Cotton Blend",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=36iy5q",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=36iy5q&_wi=3",
|
||||
imageAlt: "White and gold traditional Habesha Kemis",
|
||||
},
|
||||
{
|
||||
@@ -76,7 +76,7 @@ export default function MarketplacePage() {
|
||||
name: "Handwoven Habesha Kemis - Red & White",
|
||||
price: "$269",
|
||||
variant: "Traditional Weave",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=36iy5q",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=36iy5q&_wi=4",
|
||||
imageAlt: "Red and white traditional Habesha Kemis",
|
||||
},
|
||||
{
|
||||
@@ -84,7 +84,7 @@ export default function MarketplacePage() {
|
||||
name: "Premium Leather Crossbody Bag",
|
||||
price: "$189",
|
||||
variant: "Vegetable-Tanned Brown",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knaz0s",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knaz0s&_wi=2",
|
||||
imageAlt: "Brown leather crossbody bag",
|
||||
},
|
||||
{
|
||||
@@ -92,7 +92,7 @@ export default function MarketplacePage() {
|
||||
name: "Luxury Leather Tote Bag",
|
||||
price: "$319",
|
||||
variant: "Hand-Stitched",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knaz0s",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knaz0s&_wi=3",
|
||||
imageAlt: "Luxury leather tote bag",
|
||||
},
|
||||
{
|
||||
@@ -100,7 +100,7 @@ export default function MarketplacePage() {
|
||||
name: "Yirgacheffe Single-Origin Coffee",
|
||||
price: "$28/lb",
|
||||
variant: "Light Roast",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8t4tqr",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8t4tqr&_wi=2",
|
||||
imageAlt: "Yirgacheffe light roast coffee beans",
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@ export default function MarketplacePage() {
|
||||
name: "Sidamo Premium Coffee",
|
||||
price: "$32/lb",
|
||||
variant: "Medium Roast",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8t4tqr",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8t4tqr&_wi=3",
|
||||
imageAlt: "Sidamo medium roast coffee beans",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -66,7 +66,7 @@ export default function HomePage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=36iy5q"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=36iy5q&_wi=1"
|
||||
imageAlt="Premium handcrafted Ethiopian Habesha Kemis dress"
|
||||
mediaAnimation="blur-reveal"
|
||||
frameStyle="card"
|
||||
@@ -83,7 +83,7 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
buttons={[{ text: "Learn Our Process", href: "#features" }]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1kuy27"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1kuy27&_wi=1"
|
||||
imageAlt="Ethiopian artisans crafting traditional textiles"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="About EthioDirect"
|
||||
@@ -105,7 +105,7 @@ export default function HomePage() {
|
||||
name: "Handwoven Habesha Kemis",
|
||||
price: "$189 - $349",
|
||||
variant: "Traditional White/Gold",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=36iy5q",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=36iy5q&_wi=2",
|
||||
imageAlt: "Traditional handwoven Habesha Kemis dress",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ export default function HomePage() {
|
||||
name: "Premium Leather Messenger Bag",
|
||||
price: "$245 - $395",
|
||||
variant: "Vegetable-Tanned",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knaz0s",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=knaz0s&_wi=1",
|
||||
imageAlt: "Luxury Ethiopian handcrafted leather messenger bag",
|
||||
},
|
||||
{
|
||||
@@ -121,7 +121,7 @@ export default function HomePage() {
|
||||
name: "Specialty Ethiopian Coffee",
|
||||
price: "$24 - $42/lb",
|
||||
variant: "Single-Origin Yirgacheffe",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8t4tqr",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8t4tqr&_wi=1",
|
||||
imageAlt: "Premium Ethiopian specialty coffee beans",
|
||||
},
|
||||
]}
|
||||
@@ -216,7 +216,7 @@ export default function HomePage() {
|
||||
role: "Master Weaver",
|
||||
company: "Addis Textile Cooperative",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=luqnw0",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=luqnw0&_wi=1",
|
||||
imageAlt: "Amara Tekle, Ethiopian textile weaver",
|
||||
},
|
||||
{
|
||||
@@ -225,7 +225,7 @@ export default function HomePage() {
|
||||
role: "Leather Craftsman",
|
||||
company: "Hailu Fine Leather",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dufmly",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dufmly&_wi=1",
|
||||
imageAlt: "Demissie Hailu, Ethiopian leather artisan",
|
||||
},
|
||||
{
|
||||
@@ -234,7 +234,7 @@ export default function HomePage() {
|
||||
role: "Coffee Farmer & Processor",
|
||||
company: "Yirgacheffe Highlands Farm",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2op3fo",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2op3fo&_wi=1",
|
||||
imageAlt: "Marta Worku, Ethiopian coffee producer",
|
||||
},
|
||||
{
|
||||
@@ -261,7 +261,7 @@ export default function HomePage() {
|
||||
role: "Jewelry Artisan",
|
||||
company: "Heritage Gold Studio",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1apzvr",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1apzvr&_wi=1",
|
||||
imageAlt: "Girma Abebe, Ethiopian jewelry craftsman",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user