Merge version_1 into main #1
@@ -133,7 +133,7 @@ export default function AboutPage() {
|
||||
quote: "Since partnering with Fatisoft Global, our production output increased by 35% while reducing maintenance costs significantly. Their industrial motors are built to last and perform flawlessly under demanding conditions.",
|
||||
name: "Ahmed Hassan",
|
||||
role: "Procurement Manager, TechCorp Manufacturing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg?_wi=3",
|
||||
imageAlt: "Ahmed Hassan",
|
||||
},
|
||||
{
|
||||
@@ -142,7 +142,7 @@ export default function AboutPage() {
|
||||
quote: "The precision and reliability of Fatisoft's components exceeded our expectations. Their technical support team went above and beyond to ensure seamless integration into our operations.",
|
||||
name: "Maria Rodriguez",
|
||||
role: "Operations Director, Industrial Solutions Inc",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg?_wi=3",
|
||||
imageAlt: "Maria Rodriguez",
|
||||
},
|
||||
{
|
||||
@@ -151,7 +151,7 @@ export default function AboutPage() {
|
||||
quote: "We've tested many suppliers, but Fatisoft Global consistently delivers the highest quality industrial equipment. Their commitment to excellence is evident in every product.",
|
||||
name: "James Mitchell",
|
||||
role: "Engineering Lead, Precision Manufacturing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/furious-mature-business-man-conference-room_1262-3010.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/furious-mature-business-man-conference-room_1262-3010.jpg?_wi=3",
|
||||
imageAlt: "James Mitchell",
|
||||
},
|
||||
{
|
||||
@@ -160,7 +160,7 @@ export default function AboutPage() {
|
||||
quote: "Working with Fatisoft Global has streamlined our supply chain dramatically. Their worldwide distribution network and responsive customer service make them an invaluable business partner.",
|
||||
name: "Sarah Chen",
|
||||
role: "Supply Chain Manager, Global Industries",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-women-working-together-side-view_23-2149871311.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-women-working-together-side-view_23-2149871311.jpg?_wi=3",
|
||||
imageAlt: "Sarah Chen",
|
||||
},
|
||||
]}
|
||||
@@ -176,7 +176,7 @@ export default function AboutPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg?_wi=5"
|
||||
imageAlt="Fatisoft Global industrial excellence"
|
||||
logoText="Fatisoft Global"
|
||||
copyrightText="© 2025 Fatisoft Global Ltd. All rights reserved."
|
||||
|
||||
@@ -58,7 +58,7 @@ export default function ContactPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg?_wi=6"
|
||||
imageAlt="Fatisoft Global industrial excellence"
|
||||
logoText="Fatisoft Global"
|
||||
copyrightText="© 2025 Fatisoft Global Ltd. All rights reserved."
|
||||
|
||||
@@ -1,27 +1,60 @@
|
||||
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"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Fatisoft Global - Premium Industrial Components",
|
||||
description: "Discover high-quality electric motors, industrial equipment, and mechanical components. Trusted by global manufacturers for precision and reliability.",
|
||||
keywords: "industrial motors, electric components, manufacturing equipment, industrial solutions",
|
||||
metadataBase: new URL("https://fatisoftglobal.com"),
|
||||
alternates: {
|
||||
canonical: "https://fatisoftglobal.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Fatisoft Global - Industrial Excellence",
|
||||
description: "Premium industrial components and solutions engineered for performance",
|
||||
url: "https://fatisoftglobal.com",
|
||||
siteName: "Fatisoft Global",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg",
|
||||
alt: "Industrial components showcase",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Fatisoft Global - Industrial Components",
|
||||
description: "High-quality motors and industrial equipment",
|
||||
images: ["http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -31,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -62,7 +62,7 @@ export default function HomePage() {
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "fluid" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg?_wi=1"
|
||||
imageAlt="Industrial electric motors and components"
|
||||
mediaAnimation="slide-up"
|
||||
testimonials={[
|
||||
@@ -71,28 +71,28 @@ export default function HomePage() {
|
||||
handle: "Procurement Manager, TechCorp Manufacturing",
|
||||
testimonial: "Fatisoft's industrial components have transformed our production efficiency. Exceptional quality and reliability!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Maria Rodriguez",
|
||||
handle: "Operations Director, Industrial Solutions Inc",
|
||||
testimonial: "Outstanding service and premium-grade products. They understand industrial requirements perfectly.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "James Mitchell",
|
||||
handle: "Engineering Lead, Precision Manufacturing",
|
||||
testimonial: "The technical support and product quality exceed our expectations. Highly recommended for any industrial buyer.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/furious-mature-business-man-conference-room_1262-3010.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/furious-mature-business-man-conference-room_1262-3010.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Sarah Chen",
|
||||
handle: "Supply Chain Manager, Global Industries",
|
||||
testimonial: "Reliable supplier with consistent quality. Their products have improved our operational metrics significantly.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-women-working-together-side-view_23-2149871311.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-women-working-together-side-view_23-2149871311.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
@@ -247,7 +247,7 @@ export default function HomePage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg?_wi=2"
|
||||
imageAlt="Fatisoft Global industrial excellence"
|
||||
logoText="Fatisoft Global"
|
||||
copyrightText="© 2025 Fatisoft Global Ltd. All rights reserved."
|
||||
|
||||
@@ -69,7 +69,7 @@ export default function ProductsPage() {
|
||||
id: "motor-gold",
|
||||
name: "Industrial Servo Motor - Precision Grade",
|
||||
price: "$2,149.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg?_wi=3",
|
||||
imageAlt: "Golden brass servo motor",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -172,7 +172,7 @@ export default function ProductsPage() {
|
||||
quote: "Since partnering with Fatisoft Global, our production output increased by 35% while reducing maintenance costs significantly. Their industrial motors are built to last and perform flawlessly under demanding conditions.",
|
||||
name: "Ahmed Hassan",
|
||||
role: "Procurement Manager, TechCorp Manufacturing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -180,7 +180,7 @@ export default function ProductsPage() {
|
||||
quote: "The precision and reliability of Fatisoft's components exceeded our expectations. Their technical support team went above and beyond to ensure seamless integration into our operations.",
|
||||
name: "Maria Rodriguez",
|
||||
role: "Operations Director, Industrial Solutions Inc",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -188,7 +188,7 @@ export default function ProductsPage() {
|
||||
quote: "We've tested many suppliers, but Fatisoft Global consistently delivers the highest quality industrial equipment. Their commitment to excellence is evident in every product.",
|
||||
name: "James Mitchell",
|
||||
role: "Engineering Lead, Precision Manufacturing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/furious-mature-business-man-conference-room_1262-3010.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/furious-mature-business-man-conference-room_1262-3010.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -196,7 +196,7 @@ export default function ProductsPage() {
|
||||
quote: "Working with Fatisoft Global has streamlined our supply chain dramatically. Their worldwide distribution network and responsive customer service make them an invaluable business partner.",
|
||||
name: "Sarah Chen",
|
||||
role: "Supply Chain Manager, Global Industries",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-women-working-together-side-view_23-2149871311.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-women-working-together-side-view_23-2149871311.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -204,7 +204,7 @@ export default function ProductsPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg?_wi=4"
|
||||
imageAlt="Fatisoft Global industrial excellence"
|
||||
logoText="Fatisoft Global"
|
||||
copyrightText="© 2025 Fatisoft Global Ltd. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user