diff --git a/middleware.ts b/middleware.ts
new file mode 100644
index 0000000..f3c0ac5
--- /dev/null
+++ b/middleware.ts
@@ -0,0 +1,15 @@
+import createMiddleware from "next-intl/middleware";
+import { routing } from "./src/i18n/routing";
+
+export default createMiddleware({
+ ...routing,
+ localePrefix: "as-needed",
+});
+
+export const config = {
+ matcher: [
+ "/",
+ "/(sr|en|de|fr)/:path*",
+ "/((?!api|_next|_vercel|.*\\..*).*)",
+ ],
+};
diff --git a/src/app/de/about/page.tsx b/src/app/de/about/page.tsx
new file mode 100644
index 0000000..f978538
--- /dev/null
+++ b/src/app/de/about/page.tsx
@@ -0,0 +1,110 @@
+import Header from "@/components/layout/Header";
+import Footer from "@/components/layout/Footer";
+
+export const metadata = {
+ title: "Über Uns - ManoonOils",
+ description: "Erfahren Sie mehr über ManoonOils - unsere Geschichte, Mission und unser Engagement für natürliche Schönheit.",
+};
+
+export default function AboutPage() {
+ return (
+ <>
+
+
+
+
+
+ Unsere Geschichte
+
Über ManoonOils
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ManoonOils wurde aus einer Leidenschaft für natürliche Schönheit und dem Glauben geboren,
+ dass die beste Hautpflege von der Natur selbst kommt.
+
+
+ Wir glauben an die Kraft natürlicher Inhaltsstoffe. Jedes Öl in unserer
+ Kollektion wird sorgfältig aufgrund seiner einzigartigen Eigenschaften und
+ Vorteile ausgewählt. Von nährenden Ölen, die die Haar vitalität wiederherstellen,
+ bis zu Seren, die die Haut verjüngen, stellen wir jedes Produkt mit Liebe und
+ Aufmerksamkeit für Details her.
+
+
+
+
+
+
Natürliche Inhaltsstoffe
+
+ Wir verwenden nur die feinsten natürlichen Inhaltsstoffe, die ethisch und nachhaltig
+ von vertrauenswürdigen Lieferanten aus aller Welt bezogen werden.
+
+
+
+
Tierversuchsfrei
+
+ Unsere Produkte werden niemals an Tieren getestet. Wir glauben an Schönheit
+ ohne Kompromisse.
+
+
+
+
Nachhaltige Verpackung
+
+ Wir verwenden umweltfreundliche Verpackungsmaterialien und minimieren Abfall
+ während unseres gesamten Produktionsprozesses.
+
+
+
+
Handgefertigte Qualität
+
+ Jede Flasche wird in kleinen Chargen von Hand hergestellt, um
+ höchste Qualität und Frische zu gewährleisten.
+
+
+
+
+
+ Unsere Mission
+
+ “Hochwertige, natürliche Produkte anzubieten, die Ihre tägliche Schönheitsroutine verbessern.”
+
+
+
+
+
Mit Liebe Handgemacht
+
+ Jede Flasche ManoonOils wird mit Sorgfalt von Hand hergestellt. Wir stellen unsere
+ Produkte in kleinen Chargen her, um höchste Qualität und Frische zu gewährleisten.
+ Wenn Sie ManoonOils verwenden, können Sie sicher sein, dass Sie etwas verwenden,
+ das mit echter Sorgfalt und Fachwissen hergestellt wurde.
+
+
+ Unsere Reise begann mit einer einfachen Frage: Wie können wir Produkte entwickeln,
+ die Haar und Haut wirklich pflegen? Heute innovieren wir weiter, während wir
+ unserem Engagement für natürliche, effektive Schönheitslösungen treu bleiben.
+
Haben Sie Fragen? Wir würden uns freuen, von Ihnen zu hören.
+
+
+
+
+
+
+
+
+
Kontaktieren Sie Uns
+
+ Wir sind hier um zu helfen! Ob Sie Fragen zu unseren Produkten haben,
+ Hilfe bei einer Bestellung benötigen oder einfach Hallo sagen möchten.
+
+
+
+
+
+
+
+
E-Mail
+
hello@manoonoils.com
+
Wir antworten innerhalb von 24 Stunden
+
+
+
+
+
+
+
+
Versand
+
Kostenloser Versand ab €50
+
Lieferung innerhalb von 2-5 Werktagen
+
+
+
+
+
+
+
+
Standort
+
Serbien
+
Weltweiter Versand
+
+
+
+
+
+ {submitted ? (
+
+
+
+
+
Vielen Dank!
+
Ihre Nachricht wurde gesendet. Wir werden uns bald bei Ihnen melden.
+
+ ) : (
+
+ )}
+
+
+
+
+
+
+
+
+
Häufig Gestellte Fragen
+
+ {[
+ { q: "Wie lange dauert der Versand?", a: "Bestellungen werden normalerweise innerhalb von 2-5 Werktagen für Inlandsversand geliefert. Sie erhalten eine Tracking-Nummer, sobald Ihre Bestellung versandt wurde." },
+ { q: "Sind Ihre Produkte 100% natürlich?", a: "Ja! Alle unsere Öle sind 100% natürlich, kaltgepresst und frei von Zusatzstoffen, Konservierungsstoffen oder künstlichen Duftstoffen." },
+ { q: "Was ist Ihre Rückgaberichtlinie?", a: "Wir akzeptieren Rücksendungen innerhalb von 14 Tagen nach Lieferung für ungeöffnete Produkte. Bitte kontaktieren Sie uns, wenn Sie Probleme mit Ihrer Bestellung haben." },
+ { q: "Bieten Sie Wiederverkauf an?", a: "Ja, wir bieten Wiederverkaufspreise für Bulk-Bestellungen. Bitte kontaktieren Sie uns unter hello@manoonoils.com für mehr Informationen." }
+ ].map((faq, index) => (
+
+
{faq.q}
+
{faq.a}
+
+ ))}
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/app/de/page.tsx b/src/app/de/page.tsx
new file mode 100644
index 0000000..c3171cc
--- /dev/null
+++ b/src/app/de/page.tsx
@@ -0,0 +1,213 @@
+import { getProducts } from "@/lib/saleor";
+import Header from "@/components/layout/Header";
+import Footer from "@/components/layout/Footer";
+import HeroVideo from "@/components/home/HeroVideo";
+import ProductCard from "@/components/product/ProductCard";
+import TrustBadges from "@/components/home/TrustBadges";
+import AsSeenIn from "@/components/home/AsSeenIn";
+import ProductReviews from "@/components/product/ProductReviews";
+import BeforeAfterGallery from "@/components/home/BeforeAfterGallery";
+import ProblemSection from "@/components/home/ProblemSection";
+import HowItWorks from "@/components/home/HowItWorks";
+
+export const metadata = {
+ title: "ManoonOils - Premium Natürliche Öle für Haar & Haut",
+ description:
+ "Entdecken Sie unsere Premium-Kollektion natürlicher Öle für Haar- und Hautpflege. Mit Liebe handgemacht aus den feinsten Zutaten.",
+};
+
+export default async function GermanHomepage() {
+ let products: any[] = [];
+ try {
+ products = await getProducts("DE");
+ } catch (e) {
+ console.log("Failed to fetch products during build");
+ }
+
+ const featuredProducts = products?.slice(0, 4) || [];
+ const hasProducts = featuredProducts.length > 0;
+
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {hasProducts && (
+
+
+
+
+ Unsere Kollektion
+
+
+ Premium Natürliche Öle
+
+
+ Kaltgepresst, rein und natürlich für Ihre tägliche Schönheitsroutine
+
+ Jede Flasche ManoonOils wird mit größter Sorgfalt hergestellt, unter
+ Verwendung traditioneller Methoden, die von Generation zu Generation
+ weitergegeben wurden. Wir beziehen nur die besten organischen
+ Zutaten, um Ihnen Öle zu liefern, die Haar und Haut pflegen.
+
+
+ Unser Engagement für Reinheit bedeutet: keine Zusatzstoffe, keine
+ Konservierungsstoffe - nur die Güte der Natur in ihrer potentesten Form.
+
+ Bitte schauen Sie später nach neuen Produkten.
+
+
+ ) : (
+
+ {products.map((product, index) => (
+
+ ))}
+
+ )}
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/app/en/about/page.tsx b/src/app/en/about/page.tsx
index ccbe5f1..0c9b479 100644
--- a/src/app/en/about/page.tsx
+++ b/src/app/en/about/page.tsx
@@ -1,2 +1,113 @@
-// Re-export from main about page
-export { default, metadata } from "../../about/page";
+import Header from "@/components/layout/Header";
+import Footer from "@/components/layout/Footer";
+
+export const metadata = {
+ title: "About - ManoonOils",
+ description: "Learn about ManoonOils - our story, mission, and commitment to natural beauty.",
+};
+
+export default function AboutPage() {
+ return (
+ <>
+
+
+
+
+
+ Our Story
+
+ About ManoonOils
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ManoonOils was born from a passion for natural beauty and the belief
+ that the best skincare comes from nature itself.
+
+
+ We believe in the power of natural ingredients. Every oil in our
+ collection is carefully selected for its unique properties and
+ benefits. From nourishing oils that restore hair vitality to serums
+ that rejuvenate skin, we craft each product with love and attention
+ to detail.
+
+
+
+
+
+
Natural Ingredients
+
+ We use only the finest natural ingredients, sourced ethically and sustainably
+ from trusted suppliers around the world.
+
+
+
+
Cruelty-Free
+
+ Our products are never tested on animals. We believe in beauty
+ without compromise.
+
+
+
+
Sustainable Packaging
+
+ We use eco-friendly packaging materials and minimize waste
+ throughout our production process.
+
+
+
+
Handcrafted Quality
+
+ Every bottle is handcrafted in small batches to ensure
+ the highest quality and freshness.
+
+
+
+
+
+ Our Mission
+
+ “To provide premium quality, natural products that enhance
+ your daily beauty routine.”
+
+
+
+
+
Handmade with Love
+
+ Every bottle of ManoonOils is handcrafted with care. We small-batch
+ produce our products to ensure the highest quality and freshness.
+ When you use ManoonOils, you can feel confident that you're using
+ something made with genuine care and expertise.
+
+
+ Our journey began with a simple question: how can we create products
+ that truly nurture both hair and skin? Today, we continue to innovate
+ while staying true to our commitment to natural, effective beauty solutions.
+
+ We're here to help! Whether you have questions about our products,
+ need assistance with an order, or just want to say hello, we'd love to hear from you.
+
+
+
+
+
+
+
+
+
Email
+
hello@manoonoils.com
+
We reply within 24 hours
+
+
+
+
+
+
+
+
+
Shipping
+
Free shipping over £50
+
Delivered within 2-5 business days
+
+
+
+
+
+
+
+
+
Location
+
Serbia
+
Shipping worldwide
+
+
+
+
+
+
+ {submitted ? (
+
+
+
+
+
Thank You!
+
+ Your message has been sent. We'll get back to you soon.
+
+
+ ) : (
+
+ )}
+
+
+
+
+
+
+
+
+
+ Frequently Asked Questions
+
+
+
+ {[
+ {
+ q: "How long does shipping take?",
+ a: "Orders are typically delivered within 2-5 business days for domestic shipping. You'll receive a tracking number once your order ships."
+ },
+ {
+ q: "Are your products 100% natural?",
+ a: "Yes! All our oils are 100% natural, cold-pressed, and free from any additives, preservatives, or artificial fragrances."
+ },
+ {
+ q: "What is your return policy?",
+ a: "We accept returns within 14 days of delivery for unopened products. Please contact us if you have any issues with your order."
+ },
+ {
+ q: "Do you offer wholesale?",
+ a: "Yes, we offer wholesale pricing for bulk orders. Please contact us at hello@manoonoils.com for more information."
+ }
+ ].map((faq, index) => (
+
+
{faq.q}
+
{faq.a}
+
+ ))}
+
+
+
+
+
-
-
+
+
+
+ >
);
}
diff --git a/src/app/en/page.tsx b/src/app/en/page.tsx
index fd19934..d2463d9 100644
--- a/src/app/en/page.tsx
+++ b/src/app/en/page.tsx
@@ -3,6 +3,12 @@ import Header from "@/components/layout/Header";
import Footer from "@/components/layout/Footer";
import HeroVideo from "@/components/home/HeroVideo";
import ProductCard from "@/components/product/ProductCard";
+import TrustBadges from "@/components/home/TrustBadges";
+import AsSeenIn from "@/components/home/AsSeenIn";
+import ProductReviews from "@/components/product/ProductReviews";
+import BeforeAfterGallery from "@/components/home/BeforeAfterGallery";
+import ProblemSection from "@/components/home/ProblemSection";
+import HowItWorks from "@/components/home/HowItWorks";
export const metadata = {
title: "ManoonOils - Premium Natural Oils for Hair & Skin",
@@ -10,47 +16,56 @@ export const metadata = {
"Discover our premium collection of natural oils for hair and skin care. Handmade with love using only the finest ingredients.",
};
-export default async function Homepage() {
+export default async function EnglishHomepage() {
let products: any[] = [];
try {
- products = await getProducts("EN");
+ products = await getProducts("UK");
} catch (e) {
- console.log('Failed to fetch products during build');
+ console.log("Failed to fetch products during build");
}
-
- const featuredProducts = products.slice(0, 4);
+
+ const featuredProducts = products?.slice(0, 4) || [];
+ const hasProducts = featuredProducts.length > 0;
return (
<>
-
+
- {/* Hero Section with Video Background */}
- {/* Main Content */}
-
diff --git a/src/app/fr/about/page.tsx b/src/app/fr/about/page.tsx
new file mode 100644
index 0000000..8989393
--- /dev/null
+++ b/src/app/fr/about/page.tsx
@@ -0,0 +1,48 @@
+import Header from "@/components/layout/Header";
+import Footer from "@/components/layout/Footer";
+
+export const metadata = {
+ title: "À Propos - ManoonOils",
+ description: "Découvrez ManoonOils - notre histoire, notre mission et notre engagement pour la beauté naturelle.",
+};
+
+export default function AboutPage() {
+ return (
+ <>
+
+
+
+
+
+ Notre Histoire
+
À Propos de ManoonOils
+
+
+
+
+
+
+
+
+
+
+
+
ManoonOils est né d'une passion pour la beauté naturelle et de la conviction que les meilleurs soins Cutanee viennent de la nature elle-même.
+
Nous croyons en le pouvoir des ingrédients naturels. Chaque huile de notre collection est soigneusement sélectionnée pour ses propriétés et bienfaits uniques. Des huiles nourrissantes qui restaurent la vitalité des cheveux aux sérums qui rajeunissent la peau, nous élaborons chaque produit avec amour et attention aux détails.
+
+
+
Ingrédients Naturels
Nous utilisons uniquement les meilleurs ingrédients naturels, sourcés de manière éthique et durable auprès de fournisseurs de confiance du monde entier.
+
Non Testé sur Animaux
Nos produits ne sont jamais testés sur les animaux. Nous croyons en la beauté sans compromis.
+
Emballage Durable
Nous utilisons des matériaux d'emballage écologiques et minimisons les déchets tout au long de notre processus de production.
+
Qualité Artisanale
Chaque flacon est fabriqué à la main en petites quantités pour garantir la plus haute qualité et fraîcheur.
+
+
Notre Mission
“Fournir des produits naturels de qualité premium qui améliorent votre routine beauté quotidienne.”
+
Fait Main avec Amour
Chaque flacon de ManoonOils est fabriqué avec soin. Nous produisons nos produits en petites quantités pour garantir la plus haute qualité et fraîcheur. Lorsque vous utilisez ManoonOils, vous pouvez être sûr d'utiliser quelque chose fait avec un véritable soin et expertise.
Notre voyage a commencé par une simple question: comment créer des produits qui soignent vraiment les cheveux et la peau? Aujourd'hui, nous continuons à innover tout en restant fidèles à notre engagement envers des solutions beauté naturelles et efficaces.
Des questions? Nous serions ravis de vous entendre.
+
+
+
+
+
+
+
+
Contactez-Nous
+
Nous sommes là pour aider! Que vous ayez des questions sur nos produits, besoin d'aide avec une commande, ou simplement voulez dire bonjour.
+
+
+
+
Email
hello@manoonoils.com
Nous répondons sous 24 heures
+
+
+
+
Livraison
Livraison gratuite dès €50
Livré sous 2-5 jours ouvrables
+
+
+
+
Localisation
Serbie
Expédition dans le monde entier
+
+
+
+
+ {submitted ? (
+
+
+
Merci!
+
Votre message a été envoyé. Nous reviendrons vers vous bientôt.
+
+ ) : (
+
+ )}
+
+
+
+
+
+
+
+
Questions Fréquentes
+
+ {[
+ { q: "Combien de temps dure la livraison?", a: "Les commandes sont généralement livrées sous 2-5 jours ouvrables pour la livraison nationale. Vous recevrez un numéro de suivi une fois votre commande expédiée." },
+ { q: "Vos produits sont-ils 100% naturels?", a: "Oui! Toutes nos huiles sont 100% naturelles, pressées à froid et sans additifs, conservateurs ou parfums artificiels." },
+ { q: "Quelle est votre politique de retour?", a: "Nous acceptons les retours dans les 14 jours suivant la livraison pour les produits non ouverts. Veuillez nous contacter si vous avez des problèmes avec votre commande." },
+ { q: "Offrez-vous la vente en gros?", a: "Oui, nous proposons des prix de gros pour les commandes en vrac. Veuillez nous contacter à hello@manoonoils.com pour plus d'informations." }
+ ].map((faq, index) => (
{faq.q}
{faq.a}
))}
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/app/fr/page.tsx b/src/app/fr/page.tsx
new file mode 100644
index 0000000..3fb5ce1
--- /dev/null
+++ b/src/app/fr/page.tsx
@@ -0,0 +1,117 @@
+import { getProducts } from "@/lib/saleor";
+import Header from "@/components/layout/Header";
+import Footer from "@/components/layout/Footer";
+import HeroVideo from "@/components/home/HeroVideo";
+import ProductCard from "@/components/product/ProductCard";
+import TrustBadges from "@/components/home/TrustBadges";
+import AsSeenIn from "@/components/home/AsSeenIn";
+import ProductReviews from "@/components/product/ProductReviews";
+import BeforeAfterGallery from "@/components/home/BeforeAfterGallery";
+import ProblemSection from "@/components/home/ProblemSection";
+import HowItWorks from "@/components/home/HowItWorks";
+
+export const metadata = {
+ title: "ManoonOils - Huiles Naturelles Premium pour Cheveux & Peau",
+ description:
+ "Découvrez notre collection premium d'huiles naturelles pour les soins capillaires et cutanés. Fait main avec amour en utilisant uniquement les meilleurs ingrédients.",
+};
+
+export default async function FrenchHomepage() {
+ let products: any[] = [];
+ try {
+ products = await getProducts("FR");
+ } catch (e) {
+ console.log("Failed to fetch products during build");
+ }
+
+ const featuredProducts = products?.slice(0, 4) || [];
+ const hasProducts = featuredProducts.length > 0;
+
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+ {hasProducts && (
+
+
+
+ Notre Collection
+
Huiles Naturelles Premium
+
Pressées à froid, pures et naturelles pour votre routine beauté quotidienne
Chaque flacon de ManoonOils est fabriqué avec soin en utilisant des méthodes traditionnelles transmises de génération en génération. Nous ne sélectionnons que les meilleurs ingrédients biologiques pour vous apporter des huiles qui nourrissent les cheveux et la peau.
+
Notre engagement envers la pureté signifie pas d'additifs, pas de préservatifs - juste la bonté de la nature sous sa forme la plus potente.
+ {[
+ { title: "100% Naturel", description: "Huiles pures pressées à froid sans additifs ni préservatifs. Juste la bonté de la nature.", icon: () },
+ { title: "Artisanal", description: "Chaque lot est soigneusement préparé à la main pour garantir la plus haute qualité.", icon: () },
+ { title: "Durable", description: "Ingrédients sourcés de manière éthique et emballage écologique pour une meilleure planète.", icon: () },
+ ].map((benefit, index) => (
+
+
{benefit.icon}
+
{benefit.title}
+
{benefit.description}
+
+ ))}
+
+
+
+
+
+
+ Restez Connecté
+
Rejoignez Notre Communauté
+
Abonnez-vous pour recevoir des offres exclusives, des conseils beauté et être le premier à connaître les nouveaux produits.