Merge version_1 into main #1
@@ -66,7 +66,7 @@ export default function AboutPage() {
|
||||
description: "Beautiful finishing and installation ensuring complete satisfaction",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/colleagues-having-discussion-about-project-planning-marketing-strategy-working-together-business-man-woman-doing-teamwork-with-laptop-papers-design-presentation_482257-40028.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/colleagues-having-discussion-about-project-planning-marketing-strategy-working-together-business-man-woman-doing-teamwork-with-laptop-papers-design-presentation_482257-40028.jpg?_wi=2"
|
||||
imageAlt="Interior design process workflow"
|
||||
mediaAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -87,7 +87,7 @@ export default function AboutPage() {
|
||||
value: "45+",
|
||||
title: "Years of Expertise",
|
||||
description: "Generations of traditional and modern craftsmanship combined",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/millennial-man-choosing-skilled-labor-trades_1163-3107.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/millennial-man-choosing-skilled-labor-trades_1163-3107.jpg?_wi=2",
|
||||
imageAlt: "experienced craftsman working",
|
||||
},
|
||||
{
|
||||
@@ -95,7 +95,7 @@ export default function AboutPage() {
|
||||
value: "23+",
|
||||
title: "Satisfied Clients",
|
||||
description: "Each project completed with dedication and perfection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-woman-resting_171337-3998.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-woman-resting_171337-3998.jpg?_wi=2",
|
||||
imageAlt: "happy satisfied customer",
|
||||
},
|
||||
{
|
||||
@@ -103,7 +103,7 @@ export default function AboutPage() {
|
||||
value: "Premium",
|
||||
title: "Quality Materials",
|
||||
description: "Only the finest finishes and materials for luxury results",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/artisan-doing-woodcutting_23-2150600764.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/artisan-doing-woodcutting_23-2150600764.jpg?_wi=2",
|
||||
imageAlt: "premium finishing detail",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } 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";
|
||||
|
||||
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"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Sri Mani Bala Interiors - Premium Interior Design in Thanjavur",
|
||||
description: "Transform your home with luxury interior designs, modular kitchens, TV units, and premium woodwork. 45+ years of craftsmanship in Thanjavur.",
|
||||
keywords: "interior designers Thanjavur, modular kitchen Thanjavur, TV unit design, wooden interior work, premium interiors, interior design services",
|
||||
metadataBase: new URL("https://srimanibalainteriors.com"),
|
||||
alternates: {
|
||||
canonical: "https://srimanibalainteriors.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Sri Mani Bala Interiors - Luxury Interior Design",
|
||||
description: "Premium interior design and craftsmanship in Thanjavur. Modular kitchens, TV units, wardrobes, and custom wooden interiors.",
|
||||
url: "https://srimanibalainteriors.com",
|
||||
siteName: "Sri Mani Bala Interiors & Traders",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/luxury-bedroom-illuminated-by-modern-electric-lamp-generated-by-ai_188544-28185.jpg",
|
||||
alt: "Sri Mani Bala Interiors - Premium Interior Design",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Sri Mani Bala Interiors - Luxury Interiors Crafted With Precision",
|
||||
description: "Transform your home with premium interior designs and expert craftsmanship in Thanjavur.",
|
||||
images: ["http://img.b2bpic.net/free-photo/luxury-bedroom-illuminated-by-modern-electric-lamp-generated-by-ai_188544-28185.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={`${manrope.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -129,11 +129,11 @@ export default function HomePage() {
|
||||
icon: ChefHat,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/black-slate-rectangular-serving-tray-isolated-transparent-background_191095-85852.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/black-slate-rectangular-serving-tray-isolated-transparent-background_191095-85852.jpg?_wi=1",
|
||||
imageAlt: "Modern modular kitchen design",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/new-modern-steel-faucet-kitchen-room-sink-close-up_169016-19743.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/new-modern-steel-faucet-kitchen-room-sink-close-up_169016-19743.jpg?_wi=1",
|
||||
imageAlt: "Premium kitchen finishes",
|
||||
},
|
||||
],
|
||||
@@ -144,11 +144,11 @@ export default function HomePage() {
|
||||
icon: Tv,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/realistic-hall-furniture_52683-69523.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/realistic-hall-furniture_52683-69523.jpg?_wi=1",
|
||||
imageAlt: "Luxury TV unit design",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ray-sun-textured-wall-room_169016-24694.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ray-sun-textured-wall-room_169016-24694.jpg?_wi=1",
|
||||
imageAlt: "Feature wall panel installation",
|
||||
},
|
||||
],
|
||||
@@ -159,11 +159,11 @@ export default function HomePage() {
|
||||
icon: Wardrobe,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-wooden-wardrobe-decorated-with-blinds-wardrobe-with-blinds-decoration_169016-13063.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-wooden-wardrobe-decorated-with-blinds-wardrobe-with-blinds-decoration_169016-13063.jpg?_wi=1",
|
||||
imageAlt: "Custom wardrobe design",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-trying-dress-room_1153-7723.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-trying-dress-room_1153-7723.jpg?_wi=1",
|
||||
imageAlt: "Spacious wardrobe organization",
|
||||
},
|
||||
],
|
||||
@@ -174,11 +174,11 @@ export default function HomePage() {
|
||||
icon: Hammer,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/details-classic-oak-furniture-closeup-old-sofa-classic-office-interior-design-concept-space-text_166373-2661.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/details-classic-oak-furniture-closeup-old-sofa-classic-office-interior-design-concept-space-text_166373-2661.jpg?_wi=1",
|
||||
imageAlt: "Wooden interior craftsmanship",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/afternoon-shadows-wooden-wall_122409-33.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/afternoon-shadows-wooden-wall_122409-33.jpg?_wi=1",
|
||||
imageAlt: "Premium wood finishing",
|
||||
},
|
||||
],
|
||||
@@ -189,11 +189,11 @@ export default function HomePage() {
|
||||
icon: Blocks,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-shopping-mall_23-2147669866.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-shopping-mall_23-2147669866.jpg?_wi=1",
|
||||
imageAlt: "Glass partition design",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/light-wood-wall-design_53876-75115.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/light-wood-wall-design_53876-75115.jpg?_wi=1",
|
||||
imageAlt: "Modern PVC interior solutions",
|
||||
},
|
||||
],
|
||||
@@ -204,11 +204,11 @@ export default function HomePage() {
|
||||
icon: Sparkles,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/distressed-door-antique-blue-gold-design-texture_169016-68750.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/distressed-door-antique-blue-gold-design-texture_169016-68750.jpg?_wi=1",
|
||||
imageAlt: "Traditional temple design",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/autumn-harvest-with-corn-pumpkin_23-2148668724.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/autumn-harvest-with-corn-pumpkin_23-2148668724.jpg?_wi=1",
|
||||
imageAlt: "Sacred wooden craftsmanship",
|
||||
},
|
||||
],
|
||||
@@ -233,7 +233,7 @@ export default function HomePage() {
|
||||
value: "45+",
|
||||
title: "Years of Experience",
|
||||
description: "Traditional woodworking expertise passed through generations",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/millennial-man-choosing-skilled-labor-trades_1163-3107.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/millennial-man-choosing-skilled-labor-trades_1163-3107.jpg?_wi=1",
|
||||
imageAlt: "experienced craftsman working interior design",
|
||||
},
|
||||
{
|
||||
@@ -241,7 +241,7 @@ export default function HomePage() {
|
||||
value: "100%",
|
||||
title: "Premium Finishing",
|
||||
description: "Attention to every detail with luxury-grade materials",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/artisan-doing-woodcutting_23-2150600764.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/artisan-doing-woodcutting_23-2150600764.jpg?_wi=1",
|
||||
imageAlt: "premium finishing detail interior quality",
|
||||
},
|
||||
{
|
||||
@@ -257,7 +257,7 @@ export default function HomePage() {
|
||||
value: "23+",
|
||||
title: "Happy Clients",
|
||||
description: "Customer satisfaction is always our top priority",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-woman-resting_171337-3998.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-woman-resting_171337-3998.jpg?_wi=1",
|
||||
imageAlt: "happy satisfied customer home portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -65,12 +65,12 @@ export default function ServicesPage() {
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-psd/black-slate-rectangular-serving-tray-isolated-transparent-background_191095-85852.jpg",
|
||||
"http://img.b2bpic.net/free-psd/black-slate-rectangular-serving-tray-isolated-transparent-background_191095-85852.jpg?_wi=2",
|
||||
imageAlt: "Modern modular kitchen design",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/new-modern-steel-faucet-kitchen-room-sink-close-up_169016-19743.jpg",
|
||||
"http://img.b2bpic.net/free-photo/new-modern-steel-faucet-kitchen-room-sink-close-up_169016-19743.jpg?_wi=2",
|
||||
imageAlt: "Premium kitchen finishes",
|
||||
},
|
||||
],
|
||||
@@ -82,12 +82,12 @@ export default function ServicesPage() {
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/realistic-hall-furniture_52683-69523.jpg",
|
||||
"http://img.b2bpic.net/free-vector/realistic-hall-furniture_52683-69523.jpg?_wi=2",
|
||||
imageAlt: "Luxury TV unit design",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/ray-sun-textured-wall-room_169016-24694.jpg",
|
||||
"http://img.b2bpic.net/free-photo/ray-sun-textured-wall-room_169016-24694.jpg?_wi=2",
|
||||
imageAlt: "Feature wall panel installation",
|
||||
},
|
||||
],
|
||||
@@ -99,12 +99,12 @@ export default function ServicesPage() {
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/black-wooden-wardrobe-decorated-with-blinds-wardrobe-with-blinds-decoration_169016-13063.jpg",
|
||||
"http://img.b2bpic.net/free-photo/black-wooden-wardrobe-decorated-with-blinds-wardrobe-with-blinds-decoration_169016-13063.jpg?_wi=2",
|
||||
imageAlt: "Custom wardrobe design",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/beautiful-girl-trying-dress-room_1153-7723.jpg",
|
||||
"http://img.b2bpic.net/free-photo/beautiful-girl-trying-dress-room_1153-7723.jpg?_wi=2",
|
||||
imageAlt: "Spacious wardrobe organization",
|
||||
},
|
||||
],
|
||||
@@ -117,12 +117,12 @@ export default function ServicesPage() {
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/details-classic-oak-furniture-closeup-old-sofa-classic-office-interior-design-concept-space-text_166373-2661.jpg",
|
||||
"http://img.b2bpic.net/free-photo/details-classic-oak-furniture-closeup-old-sofa-classic-office-interior-design-concept-space-text_166373-2661.jpg?_wi=2",
|
||||
imageAlt: "Wooden interior craftsmanship",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/afternoon-shadows-wooden-wall_122409-33.jpg",
|
||||
"http://img.b2bpic.net/free-photo/afternoon-shadows-wooden-wall_122409-33.jpg?_wi=2",
|
||||
imageAlt: "Premium wood finishing",
|
||||
},
|
||||
],
|
||||
@@ -134,12 +134,12 @@ export default function ServicesPage() {
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/interior-shopping-mall_23-2147669866.jpg",
|
||||
"http://img.b2bpic.net/free-photo/interior-shopping-mall_23-2147669866.jpg?_wi=2",
|
||||
imageAlt: "Glass partition design",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/light-wood-wall-design_53876-75115.jpg",
|
||||
"http://img.b2bpic.net/free-photo/light-wood-wall-design_53876-75115.jpg?_wi=2",
|
||||
imageAlt: "Modern PVC interior solutions",
|
||||
},
|
||||
],
|
||||
@@ -151,12 +151,12 @@ export default function ServicesPage() {
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/distressed-door-antique-blue-gold-design-texture_169016-68750.jpg",
|
||||
"http://img.b2bpic.net/free-photo/distressed-door-antique-blue-gold-design-texture_169016-68750.jpg?_wi=2",
|
||||
imageAlt: "Traditional temple design",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/autumn-harvest-with-corn-pumpkin_23-2148668724.jpg",
|
||||
"http://img.b2bpic.net/free-photo/autumn-harvest-with-corn-pumpkin_23-2148668724.jpg?_wi=2",
|
||||
imageAlt: "Sacred wooden craftsmanship",
|
||||
},
|
||||
],
|
||||
@@ -198,7 +198,7 @@ export default function ServicesPage() {
|
||||
},
|
||||
]}
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/colleagues-having-discussion-about-project-planning-marketing-strategy-working-together-business-man-woman-doing-teamwork-with-laptop-papers-design-presentation_482257-40028.jpg",
|
||||
"http://img.b2bpic.net/free-photo/colleagues-having-discussion-about-project-planning-marketing-strategy-working-together-business-man-woman-doing-teamwork-with-laptop-papers-design-presentation_482257-40028.jpg?_wi=1",
|
||||
imageAlt="Interior design process workflow"
|
||||
mediaAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user