Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-14 08:41:35 +00:00
6 changed files with 66 additions and 27 deletions

View File

@@ -94,7 +94,7 @@ export default function AboutPage() {
description="Vishal International is a leading manufacturer and supplier of multi-layer, single-sided, and double-sided printed circuit boards serving industries across Bangalore, India, USA, Canada, Israel, and worldwide."
subdescription="With decades of expertise, cutting-edge manufacturing technology, and a commitment to quality, we deliver reliable PCB solutions tailored to your specific requirements. Our state-of-the-art facilities and skilled engineering team ensure every board meets the highest international standards."
icon={Award}
imageSrc="http://img.b2bpic.net/free-photo/woman-assistant-shows-exclusive-gold-necklace-luxury-jewelry-store_613910-20412.jpg"
imageSrc="http://img.b2bpic.net/free-photo/woman-assistant-shows-exclusive-gold-necklace-luxury-jewelry-store_613910-20412.jpg?_wi=2"
imageAlt="Vishal International manufacturing team and facility"
mediaAnimation="slide-up"
useInvertedBackground={true}
@@ -197,7 +197,7 @@ export default function AboutPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/happy-businessman-greeting-african-american-steel-worker-while-visiting-industrial-facility_637285-4126.jpg"
imageSrc="http://img.b2bpic.net/free-photo/happy-businessman-greeting-african-american-steel-worker-while-visiting-industrial-facility_637285-4126.jpg?_wi=2"
imageAlt="Vishal International global locations map"
logoText="Vishal International"
copyrightText="© 2025 Vishal International. All rights reserved."

View File

@@ -167,7 +167,7 @@ export default function ContactPage() {
{/* Footer */}
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/happy-businessman-greeting-african-american-steel-worker-while-visiting-industrial-facility_637285-4126.jpg"
imageSrc="http://img.b2bpic.net/free-photo/happy-businessman-greeting-african-american-steel-worker-while-visiting-industrial-facility_637285-4126.jpg?_wi=5"
imageAlt="India map location pin marker"
logoText="Vishal International"
copyrightText="© 2025 Vishal International. All rights reserved."

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } 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 { Mulish } 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 mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "PCB Manufacturers & Suppliers - Vishal International",
description: "Leading PCB manufacturer in Bangalore, India. Multi-layer, single-sided & double-sided circuit boards. Global shipping to USA, Canada, Israel. Order online.",
keywords: "PCB manufacturer, circuit board supplier, printed circuit board, FR-4 PCB, rapid prototyping, electronics manufacturing, Bangalore India",
metadataBase: new URL("https://www.vishalint.com"),
alternates: {
canonical: "https://www.vishalint.com",
},
openGraph: {
title: "PCB Manufacturing Excellence | Vishal International",
description: "Precision printed circuit board manufacturing with 20+ years expertise. Serving 500+ global customers.",
siteName: "Vishal International",
type: "website",
url: "https://www.vishalint.com",
images: [
{
url: "http://img.b2bpic.net/free-photo/motherboard-circuit-background_23-2151733837.jpg",
alt: "Vishal International PCB Manufacturing",
},
],
},
twitter: {
card: "summary_large_image",
title: "PCB Manufacturing Excellence | Vishal International",
description: "Leading PCB manufacturer serving global customers with precision and reliability.",
images: ["http://img.b2bpic.net/free-photo/motherboard-circuit-background_23-2151733837.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -108,12 +108,12 @@ export default function HomePage() {
mediaItems={[
{
imageSrc:
"http://img.b2bpic.net/free-photo/motherboard-circuit-background_23-2151733837.jpg",
"http://img.b2bpic.net/free-photo/motherboard-circuit-background_23-2151733837.jpg?_wi=1",
imageAlt: "Advanced PCB circuit board manufacturing",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/male-technician-repairing-motherboard-workbench_23-2147883622.jpg",
"http://img.b2bpic.net/free-photo/male-technician-repairing-motherboard-workbench_23-2147883622.jpg?_wi=1",
imageAlt: "Professional PCB manufacturing facility",
},
]}
@@ -137,7 +137,7 @@ export default function HomePage() {
description="Vishal International is a leading manufacturer and supplier of multi-layer, single-sided, and double-sided printed circuit boards serving industries across Bangalore, India, USA, Canada, Israel, and worldwide."
subdescription="With decades of expertise, cutting-edge manufacturing technology, and a commitment to quality, we deliver reliable PCB solutions tailored to your specific requirements. Our state-of-the-art facilities and skilled engineering team ensure every board meets the highest international standards."
icon={Award}
imageSrc="http://img.b2bpic.net/free-photo/woman-assistant-shows-exclusive-gold-necklace-luxury-jewelry-store_613910-20412.jpg"
imageSrc="http://img.b2bpic.net/free-photo/woman-assistant-shows-exclusive-gold-necklace-luxury-jewelry-store_613910-20412.jpg?_wi=1"
imageAlt="Vishal International manufacturing team and facility"
mediaAnimation="slide-up"
useInvertedBackground={true}
@@ -223,7 +223,7 @@ export default function HomePage() {
rating: 5,
reviewCount: "120+ Orders",
imageSrc:
"http://img.b2bpic.net/free-photo/men-lab-doing-experiments-close-up_23-2148939094.jpg",
"http://img.b2bpic.net/free-photo/men-lab-doing-experiments-close-up_23-2148939094.jpg?_wi=1",
imageAlt: "Rapid prototype PCB board",
},
{
@@ -234,7 +234,7 @@ export default function HomePage() {
rating: 4.8,
reviewCount: "350+ Satisfied",
imageSrc:
"http://img.b2bpic.net/free-photo/men-lab-doing-experiments-close-up_23-2148939094.jpg",
"http://img.b2bpic.net/free-photo/men-lab-doing-experiments-close-up_23-2148939094.jpg?_wi=2",
imageAlt: "Single-sided circuit board",
},
{
@@ -245,7 +245,7 @@ export default function HomePage() {
rating: 5,
reviewCount: "280+ Projects",
imageSrc:
"http://img.b2bpic.net/free-photo/smart-microchip-background-motherboard-closeup-technology_53876-108531.jpg",
"http://img.b2bpic.net/free-photo/smart-microchip-background-motherboard-closeup-technology_53876-108531.jpg?_wi=1",
imageAlt: "Double-sided PCB board",
},
{
@@ -256,7 +256,7 @@ export default function HomePage() {
rating: 5,
reviewCount: "450+ Deployments",
imageSrc:
"http://img.b2bpic.net/free-photo/technology-background-texture_23-2148105490.jpg",
"http://img.b2bpic.net/free-photo/technology-background-texture_23-2148105490.jpg?_wi=1",
imageAlt: "Multi-layer FR-4 circuit board",
},
]}
@@ -541,7 +541,7 @@ export default function HomePage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/happy-businessman-greeting-african-american-steel-worker-while-visiting-industrial-facility_637285-4126.jpg"
imageSrc="http://img.b2bpic.net/free-photo/happy-businessman-greeting-african-american-steel-worker-while-visiting-industrial-facility_637285-4126.jpg?_wi=1"
imageAlt="Vishal International global locations map"
logoText="Vishal International"
copyrightText="© 2025 Vishal International. All rights reserved."

View File

@@ -63,11 +63,11 @@ export default function ServicesPage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/motherboard-circuit-background_23-2151733837.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/motherboard-circuit-background_23-2151733837.jpg?_wi=2",
imageAlt: "Advanced PCB circuit board manufacturing",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/male-technician-repairing-motherboard-workbench_23-2147883622.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/male-technician-repairing-motherboard-workbench_23-2147883622.jpg?_wi=2",
imageAlt: "Professional PCB manufacturing facility",
},
]}
@@ -149,7 +149,7 @@ export default function ServicesPage() {
price: "Quick Turnaround",
rating: 5,
reviewCount: "120+ Orders",
imageSrc: "http://img.b2bpic.net/free-photo/men-lab-doing-experiments-close-up_23-2148939094.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/men-lab-doing-experiments-close-up_23-2148939094.jpg?_wi=3",
imageAlt: "Rapid prototype PCB board",
},
{
@@ -169,7 +169,7 @@ export default function ServicesPage() {
price: "Premium Quality",
rating: 5,
reviewCount: "280+ Projects",
imageSrc: "http://img.b2bpic.net/free-photo/smart-microchip-background-motherboard-closeup-technology_53876-108531.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smart-microchip-background-motherboard-closeup-technology_53876-108531.jpg?_wi=2",
imageAlt: "Double-sided PCB board",
},
{
@@ -179,7 +179,7 @@ export default function ServicesPage() {
price: "Precision Engineering",
rating: 5,
reviewCount: "450+ Deployments",
imageSrc: "http://img.b2bpic.net/free-photo/technology-background-texture_23-2148105490.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/technology-background-texture_23-2148105490.jpg?_wi=2",
imageAlt: "Multi-layer FR-4 circuit board",
},
]}
@@ -227,7 +227,7 @@ export default function ServicesPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/happy-businessman-greeting-african-american-steel-worker-while-visiting-industrial-facility_637285-4126.jpg"
imageSrc="http://img.b2bpic.net/free-photo/happy-businessman-greeting-african-american-steel-worker-while-visiting-industrial-facility_637285-4126.jpg?_wi=3"
imageAlt="India map location pin marker"
logoText="Vishal International"
copyrightText="© 2025 Vishal International. All rights reserved."

View File

@@ -67,7 +67,7 @@ export default function TechnologyPage() {
imageAlt: "Advanced PCB engineering technology",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/male-technician-repairing-motherboard-workbench_23-2147883622.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/male-technician-repairing-motherboard-workbench_23-2147883622.jpg?_wi=3",
imageAlt: "Professional manufacturing facility",
},
]}
@@ -207,7 +207,7 @@ export default function TechnologyPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/happy-businessman-greeting-african-american-steel-worker-while-visiting-industrial-facility_637285-4126.jpg"
imageSrc="http://img.b2bpic.net/free-photo/happy-businessman-greeting-african-american-steel-worker-while-visiting-industrial-facility_637285-4126.jpg?_wi=4"
imageAlt="India map location pin marker"
logoText="Vishal International"
copyrightText="© 2025 Vishal International. All rights reserved."