Merge version_1 into main #1
@@ -101,7 +101,7 @@ export default function AboutPage() {
|
||||
title="Comprehensive Service Solutions"
|
||||
description="Mwitenda offers integrated professional services across multiple domains, combining expertise with innovative solutions."
|
||||
tag="What We Do"
|
||||
imageSrc="http://img.b2bpic.net/free-psd/flat-design-business-strategy-landing-page_23-2150699868.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-psd/flat-design-business-strategy-landing-page_23-2150699868.jpg?_wi=3"
|
||||
imageAlt="Services showcase"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
|
||||
@@ -92,7 +92,7 @@ export default function CaseStudiesPage() {
|
||||
title: "E-Commerce Platform Launch",
|
||||
excerpt:
|
||||
"Successfully designed and deployed a modern e-commerce platform that increased client sales by 45% in the first quarter.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/fashion-sale-landing-page_23-2148577612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/fashion-sale-landing-page_23-2148577612.jpg?_wi=3",
|
||||
imageAlt: "E-commerce platform showcase",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/blond-female-dressed-white-shirt-eyeglasses-holds-tablet-pc-grey-background_613910-14708.jpg",
|
||||
@@ -104,7 +104,7 @@ export default function CaseStudiesPage() {
|
||||
title: "Dermatology Research Publication",
|
||||
excerpt:
|
||||
"Collaborated on peer-reviewed dermatology research that was published in leading medical journals, advancing clinical understanding.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-researcher-biotechnology-laboratory-with-clipboard_23-2148776148.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-researcher-biotechnology-laboratory-with-clipboard_23-2148776148.jpg?_wi=3",
|
||||
imageAlt: "Research publication",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/successful-professional-sitting-office_1098-21006.jpg",
|
||||
@@ -116,7 +116,7 @@ export default function CaseStudiesPage() {
|
||||
title: "Commercial Building Renovation",
|
||||
excerpt:
|
||||
"Managed complete renovation of commercial property including electrical, plumbing, and structural work completed on schedule.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tiler-working-renovation-apartment_23-2149278578.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tiler-working-renovation-apartment_23-2149278578.jpg?_wi=3",
|
||||
imageAlt: "Building renovation project",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg",
|
||||
@@ -128,7 +128,7 @@ export default function CaseStudiesPage() {
|
||||
title: "Business Translation Project",
|
||||
excerpt:
|
||||
"Provided professional Chinese translation for multinational corporation's market entry strategy and documentation.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesspartners-meeting-cafe_53876-13576.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesspartners-meeting-cafe_53876-13576.jpg?_wi=2",
|
||||
imageAlt: "Translation services",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-person-conference-room_23-2149085988.jpg",
|
||||
|
||||
@@ -1,29 +1,67 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } 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 { Manrope } from "next/font/google";
|
||||
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 manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Mwitenda - Web Design, Research & Professional Services",
|
||||
description: "Mwitenda offers expert web design, dermatology research consultation, Chinese language services, and construction solutions. Book your consultation today.",
|
||||
keywords: "web design, dermatology research, Chinese translation, construction services, professional services",
|
||||
metadataBase: new URL("https://mwitenda.com"),
|
||||
alternates: {
|
||||
canonical: "https://mwitenda.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Mwitenda - Professional Services Hub",
|
||||
description: "Transform your vision with integrated web design, research, language, and construction services.",
|
||||
url: "https://mwitenda.com",
|
||||
siteName: "Mwitenda",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/empty-corporate-high-end-office-job-interviews-recruitment-process_482257-103043.jpg",
|
||||
alt: "Mwitenda Professional Services",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Mwitenda - Professional Services Hub",
|
||||
description: "Web Design • Research • Chinese Services • Construction",
|
||||
images: ["http://img.b2bpic.net/free-photo/empty-corporate-high-end-office-job-interviews-recruitment-process_482257-103043.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +70,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +84,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -104,7 +104,7 @@ export default function HomePage() {
|
||||
title="Comprehensive Service Solutions"
|
||||
description="Mwitenda offers integrated professional services across multiple domains, combining expertise with innovative solutions."
|
||||
tag="What We Do"
|
||||
imageSrc="http://img.b2bpic.net/free-psd/flat-design-business-strategy-landing-page_23-2150699868.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-psd/flat-design-business-strategy-landing-page_23-2150699868.jpg?_wi=1"
|
||||
imageAlt="Services showcase"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -167,7 +167,7 @@ export default function HomePage() {
|
||||
title: "E-Commerce Platform Launch",
|
||||
excerpt:
|
||||
"Successfully designed and deployed a modern e-commerce platform that increased client sales by 45% in the first quarter.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/fashion-sale-landing-page_23-2148577612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/fashion-sale-landing-page_23-2148577612.jpg?_wi=1",
|
||||
imageAlt: "E-commerce website interface design",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar:
|
||||
@@ -181,7 +181,7 @@ export default function HomePage() {
|
||||
excerpt:
|
||||
"Collaborated on peer-reviewed dermatology research that was published in leading medical journals, advancing clinical understanding.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/female-researcher-biotechnology-laboratory-with-clipboard_23-2148776148.jpg",
|
||||
"http://img.b2bpic.net/free-photo/female-researcher-biotechnology-laboratory-with-clipboard_23-2148776148.jpg?_wi=1",
|
||||
imageAlt: "Research publication",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar:
|
||||
@@ -195,7 +195,7 @@ export default function HomePage() {
|
||||
excerpt:
|
||||
"Managed complete renovation of commercial property including electrical, plumbing, and structural work completed on schedule.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/tiler-working-renovation-apartment_23-2149278578.jpg",
|
||||
"http://img.b2bpic.net/free-photo/tiler-working-renovation-apartment_23-2149278578.jpg?_wi=1",
|
||||
imageAlt: "Building renovation project",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar:
|
||||
@@ -209,7 +209,7 @@ export default function HomePage() {
|
||||
excerpt:
|
||||
"Provided professional Chinese translation for multinational corporation's market entry strategy and documentation.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/businesspartners-meeting-cafe_53876-13576.jpg",
|
||||
"http://img.b2bpic.net/free-photo/businesspartners-meeting-cafe_53876-13576.jpg?_wi=1",
|
||||
imageAlt: "Translation services",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar:
|
||||
|
||||
@@ -84,7 +84,7 @@ export default function ServicesPage() {
|
||||
title="Our Service Offerings"
|
||||
description="Mwitenda delivers specialized expertise across four integrated service domains. Each service is tailored to meet your unique needs with professional precision and proven results."
|
||||
tag="Service Details"
|
||||
imageSrc="http://img.b2bpic.net/free-psd/flat-design-business-strategy-landing-page_23-2150699868.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-psd/flat-design-business-strategy-landing-page_23-2150699868.jpg?_wi=2"
|
||||
imageAlt="Detailed service offerings"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -134,7 +134,7 @@ export default function ServicesPage() {
|
||||
title: "E-Commerce Platform Launch",
|
||||
excerpt:
|
||||
"Successfully designed and deployed a modern e-commerce platform that increased client sales by 45% in the first quarter.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/fashion-sale-landing-page_23-2148577612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/fashion-sale-landing-page_23-2148577612.jpg?_wi=2",
|
||||
imageAlt: "E-commerce website interface design",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar:
|
||||
@@ -148,7 +148,7 @@ export default function ServicesPage() {
|
||||
excerpt:
|
||||
"Collaborated on peer-reviewed dermatology research that was published in leading medical journals, advancing clinical understanding.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/female-researcher-biotechnology-laboratory-with-clipboard_23-2148776148.jpg",
|
||||
"http://img.b2bpic.net/free-photo/female-researcher-biotechnology-laboratory-with-clipboard_23-2148776148.jpg?_wi=2",
|
||||
imageAlt: "Research publication",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar:
|
||||
@@ -162,7 +162,7 @@ export default function ServicesPage() {
|
||||
excerpt:
|
||||
"Managed complete renovation of commercial property including electrical, plumbing, and structural work completed on schedule.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/tiler-working-renovation-apartment_23-2149278578.jpg",
|
||||
"http://img.b2bpic.net/free-photo/tiler-working-renovation-apartment_23-2149278578.jpg?_wi=2",
|
||||
imageAlt: "Building renovation project",
|
||||
authorName: "Mwitenda Team",
|
||||
authorAvatar:
|
||||
|
||||
Reference in New Issue
Block a user