diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3c526bb..8a83604 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -86,7 +86,7 @@ export default function AboutPage() { { text: "Contact Us", href: "/" }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/flat-lay-plant-copyspace_23-2148198702.jpg" + imageSrc="http://img.b2bpic.net/free-photo/flat-lay-plant-copyspace_23-2148198702.jpg?_wi=2" imageAlt="GreenGrow organic farming heritage" showBlur={true} showDimOverlay={false} @@ -124,7 +124,7 @@ export default function AboutPage() { handle: "Martinez Family Farm", testimonial: "GreenGrow vermicompost transformed our soil quality. We've seen a 40% increase in yields in just two seasons. Absolutely worth the investment.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/man-picking-up-organic-carrot-right-from-field_329181-16477.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-picking-up-organic-carrot-right-from-field_329181-16477.jpg?_wi=2", imageAlt: "John Martinez", }, { @@ -133,7 +133,7 @@ export default function AboutPage() { handle: "Urban Gardens Retail", testimonial: "Our customers rave about the results they get with GreenGrow products. It's become our best-selling soil amendment. Reliable supplier, excellent quality.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg?_wi=2", imageAlt: "Sarah Chen", }, { @@ -142,7 +142,7 @@ export default function AboutPage() { handle: "Thompson Landscaping", testimonial: "For commercial projects, consistency is critical. GreenGrow delivers every time. Their cocopeat is premium grade and their customer service is outstanding.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-aside-smiling-confident-with-arms-crossed-chest_141793-55366.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-aside-smiling-confident-with-arms-crossed-chest_141793-55366.jpg?_wi=2", imageAlt: "Michael Thompson", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..d138614 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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: "GreenGrow - Premium Organic Vermicompost & Cocopeat", + description: "Buy premium organic vermicompost and cocopeat for farms, gardens, and businesses. Sustainably produced, scientifically proven to boost yields and soil health.", + keywords: "vermicompost, cocopeat, organic soil amendment, sustainable farming, garden supplies, bulk organic fertilizer", + metadataBase: new URL("https://www.greengrow.com"), + alternates: { + canonical: "https://www.greengrow.com", + }, + openGraph: { + title: "GreenGrow - Organic Soil Amendments for Better Growth", + description: "Premium vermicompost and cocopeat for farms, gardens, and businesses. Boost yields and improve soil health sustainably.", + url: "https://www.greengrow.com", + siteName: "GreenGrow", + images: [ + { + url: "http://img.b2bpic.net/free-photo/flat-lay-plant-copyspace_23-2148198702.jpg", + alt: "Premium organic soil amendment from GreenGrow", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "GreenGrow - Premium Organic Soil Amendments", + description: "Better soil, better growth. Premium vermicompost and cocopeat for sustainable farming.", + images: ["http://img.b2bpic.net/free-photo/flat-lay-plant-copyspace_23-2148198702.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}