Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ecec1f13d6 | |||
| 0109a659d7 | |||
| e8ee4710f2 | |||
| 4b3de385b7 | |||
| 470e2a1882 |
@@ -1,49 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Halant } from "next/font/google";
|
import { Inter } from 'next/font/google';
|
||||||
import { Inter } from "next/font/google";
|
import './globals.css';
|
||||||
import { Open_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ['latin'] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const openSans = Open_Sans({
|
|
||||||
variable: "--font-open-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AGRO'S - Premium Agricultural Manure & Compost Solutions", description: "Quality manure products for farms and gardens. Sustainable, tested, and delivered fast. Trusted agricultural supplier for soil health and crop yields.", keywords: "manure, compost, agricultural fertilizer, organic manure, farm supplies, crop soil amendment, bulk delivery", openGraph: {
|
title: 'AGRO\'S - Premium Manure Solutions for Modern Agriculture',
|
||||||
title: "AGRO'S - Premium Manure Solutions for Agriculture", description: "Sustainable, high-quality manure products to boost soil health and crop yields. Trusted by farmers nationwide.", siteName: "AGRO'S", type: "website"},
|
description: 'High-quality, sustainably sourced manure and compost products for farmers and gardeners. Trusted for over 20 years.',
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "AGRO'S Premium Manure Store", description: "Quality agricultural manure and compost solutions for sustainable farming."},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1411,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -71,13 +71,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Quality Assurance", description: "Every batch is tested for nutrient content and purity, ensuring optimal results for your crops and gardens.", icon: CheckCircle
|
title: "Quality Assurance", description: "Every batch is tested for nutrient content and purity, ensuring optimal results for your crops and gardens.", icon: Award
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Sustainable Sourcing", description: "We partner with local farms to source organic manure using environmentally responsible practices.", icon: Leaf
|
title: "Sustainable Sourcing", description: "We partner with local farms to source organic manure using environmentally responsible practices.", icon: Leaf
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Expert Support", description: "Our agricultural specialists provide personalized recommendations for your specific soil and crop needs.", icon: Users
|
title: "Expert Support", description: "Our agricultural specialists provide personalized recommendations for your specific soil and crop needs.", icon: Star
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Fast Delivery", description: "We offer reliable bulk delivery to farms across the region with flexible scheduling options."
|
title: "Fast Delivery", description: "We offer reliable bulk delivery to farms across the region with flexible scheduling options."
|
||||||
@@ -187,7 +187,7 @@ export default function LandingPage() {
|
|||||||
tagIcon={Mail}
|
tagIcon={Mail}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
title="Ready to Transform Your Soil?"
|
title="Ready to Transform Your Soil?"
|
||||||
description="Contact AGRO'S today for product information, bulk orders, or delivery inquiries. Our agricultural specialists are here to help."
|
description="Contact AGRO'S today for product information, bulk orders, or delivery inquiries. Our agricultural specialists are here to help. Phone: 90673 28587"
|
||||||
background={{ variant: "downward-rays-animated-grid" }}
|
background={{ variant: "downward-rays-animated-grid" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="Enter your email address"
|
inputPlaceholder="Enter your email address"
|
||||||
|
|||||||
Reference in New Issue
Block a user