Merge version_1 into main #2
@@ -105,27 +105,27 @@ export default function GalleryPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg?_wi=5",
|
||||
imageAlt: "manicured lawn perfectly mowed grass residential",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-planting-new-plants-nature_23-2149121342.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-planting-new-plants-nature_23-2149121342.jpg?_wi=4",
|
||||
imageAlt: "tree cutting professional arborist landscape work",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013552.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013552.jpg?_wi=5",
|
||||
imageAlt: "clean garden landscaping removal waste service",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-blue-jeans-watering-plant_23-2147948195.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-blue-jeans-watering-plant_23-2147948195.jpg?_wi=3",
|
||||
imageAlt: "irrigation system garden watering maintenance",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/garden-tools-leaning-pine-tree-garden-garden-space-cleaning-outdoor-park-copy-space-with-garden-tools-necessary-ongoing-maintenance-park-public-space_166373-8646.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/garden-tools-leaning-pine-tree-garden-garden-space-cleaning-outdoor-park-copy-space-with-garden-tools-necessary-ongoing-maintenance-park-public-space_166373-8646.jpg?_wi=3",
|
||||
imageAlt: "residential garden fence installation wood",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-gardener-watering-succulent-plant_23-2147844312.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-gardener-watering-succulent-plant_23-2147844312.jpg?_wi=3",
|
||||
imageAlt: "lawn grass seeding new garden preparation",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,28 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Inter } 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";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Deep Waters Gardening Services - Lawn Care & Landscaping in Randburg",
|
||||
description: "Professional gardening and landscaping services in Randburg & Fourways. Lawn mowing, fencing, tree cutting, landscape design & more. 5-star rated. Call 084 835 9057.",
|
||||
keywords: "gardening services Randburg, landscaping Fourways, lawn mowing services, tree cutting, garden maintenance, fencing installation, landscape design",
|
||||
metadataBase: new URL("https://deepwatersgardening.co.za"),
|
||||
alternates: {
|
||||
canonical: "https://deepwatersgardening.co.za",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Deep Waters Gardening Services - Professional Landscaping in Randburg",
|
||||
description: "Transform your garden with expert, affordable gardening services. Trusted by homeowners across Randburg & Fourways.",
|
||||
url: "https://deepwatersgardening.co.za",
|
||||
siteName: "Deep Waters Gardening Services",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
|
||||
alt: "Deep Waters Gardening Services - Professional lawn care",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Professional Gardening Services in Randburg",
|
||||
description: "Expert lawn mowing, landscaping, and garden maintenance. Call 084 835 9057.",
|
||||
images: ["http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -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} ${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -127,27 +127,27 @@ export default function HomePage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg?_wi=1",
|
||||
imageAlt: "Professional lawn mowing and maintenance",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-planting-new-plants-nature_23-2149121342.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-planting-new-plants-nature_23-2149121342.jpg?_wi=1",
|
||||
imageAlt: "Tree cutting and hedge trimming service",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013552.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013552.jpg?_wi=1",
|
||||
imageAlt: "Garden cleanup and landscaping work",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-blue-jeans-watering-plant_23-2147948195.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-blue-jeans-watering-plant_23-2147948195.jpg?_wi=1",
|
||||
imageAlt: "Irrigation system installation and maintenance",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/garden-tools-leaning-pine-tree-garden-garden-space-cleaning-outdoor-park-copy-space-with-garden-tools-necessary-ongoing-maintenance-park-public-space_166373-8646.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/garden-tools-leaning-pine-tree-garden-garden-space-cleaning-outdoor-park-copy-space-with-garden-tools-necessary-ongoing-maintenance-park-public-space_166373-8646.jpg?_wi=1",
|
||||
imageAlt: "Professional fence installation",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-gardener-watering-succulent-plant_23-2147844312.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-gardener-watering-succulent-plant_23-2147844312.jpg?_wi=1",
|
||||
imageAlt: "Grass seeding and lawn establishment",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -115,7 +115,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Professional lawn mowing",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg?_wi=2",
|
||||
imageAlt: "Manicured lawn maintenance",
|
||||
},
|
||||
],
|
||||
@@ -130,7 +130,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Professional fence installation",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/garden-tools-leaning-pine-tree-garden-garden-space-cleaning-outdoor-park-copy-space-with-garden-tools-necessary-ongoing-maintenance-park-public-space_166373-8646.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/garden-tools-leaning-pine-tree-garden-garden-space-cleaning-outdoor-park-copy-space-with-garden-tools-necessary-ongoing-maintenance-park-public-space_166373-8646.jpg?_wi=2",
|
||||
imageAlt: "Completed fence project",
|
||||
},
|
||||
],
|
||||
@@ -141,11 +141,11 @@ export default function ServicesPage() {
|
||||
icon: Sparkles,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-planting-sprouts-garden_23-2147714879.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-planting-sprouts-garden_23-2147714879.jpg?_wi=1",
|
||||
imageAlt: "Garden cleanup service",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013552.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013552.jpg?_wi=2",
|
||||
imageAlt: "Clean and prepared garden",
|
||||
},
|
||||
],
|
||||
@@ -160,7 +160,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Grass seeding installation",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-gardener-watering-succulent-plant_23-2147844312.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-gardener-watering-succulent-plant_23-2147844312.jpg?_wi=2",
|
||||
imageAlt: "New grass establishment",
|
||||
},
|
||||
],
|
||||
@@ -175,7 +175,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Professional hedge trimming",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-planting-new-plants-nature_23-2149121342.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-planting-new-plants-nature_23-2149121342.jpg?_wi=2",
|
||||
imageAlt: "Trimmed hedges and plants",
|
||||
},
|
||||
],
|
||||
@@ -190,7 +190,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Irrigation system installation",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-blue-jeans-watering-plant_23-2147948195.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-blue-jeans-watering-plant_23-2147948195.jpg?_wi=2",
|
||||
imageAlt: "Professional watering system",
|
||||
},
|
||||
],
|
||||
@@ -205,7 +205,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Landscape design consultation",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013552.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013552.jpg?_wi=3",
|
||||
imageAlt: "Designed landscape project",
|
||||
},
|
||||
],
|
||||
@@ -220,7 +220,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Lawn pest control service",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg?_wi=3",
|
||||
imageAlt: "Healthy lawn after treatment",
|
||||
},
|
||||
],
|
||||
@@ -235,7 +235,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Professional mulching service",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013552.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013552.jpg?_wi=4",
|
||||
imageAlt: "Garden beds with mulch",
|
||||
},
|
||||
],
|
||||
@@ -250,7 +250,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Professional weed control",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg?_wi=4",
|
||||
imageAlt: "Weed-free lawn",
|
||||
},
|
||||
],
|
||||
@@ -265,7 +265,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Professional tree cutting",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-planting-new-plants-nature_23-2149121342.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-planting-new-plants-nature_23-2149121342.jpg?_wi=3",
|
||||
imageAlt: "Tree cutting service",
|
||||
},
|
||||
],
|
||||
@@ -280,7 +280,7 @@ export default function ServicesPage() {
|
||||
imageAlt: "Waste removal service",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-planting-sprouts-garden_23-2147714879.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-planting-sprouts-garden_23-2147714879.jpg?_wi=2",
|
||||
imageAlt: "Clean property after removal",
|
||||
},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user