Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9013e2555d | |||
| d540e04240 | |||
| 09d18cafce | |||
| 45abd7bb2f | |||
| ae670f490e | |||
| dde8dec967 |
@@ -1,58 +1,20 @@
|
|||||||
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 { Roboto } from "next/font/google";
|
|
||||||
import "./globals.css";
|
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 roboto = Roboto({
|
|
||||||
variable: "--font-roboto", subsets: ["latin"],
|
|
||||||
weight: ["100", "300", "400", "500", "700", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Cement Supplier in Lakshmidevipeta | Sri Lakshmi Enterprises", description: "Sri Lakshmi Enterprises - Trusted cement supplier in Lakshmidevipeta, Andhra Pradesh. Quality cement for builders, contractors & homeowners. 4.7★ rated. Fast delivery.", keywords: "cement supplier Lakshmidevipeta, cement shop, construction materials, cement delivery, bulk cement, contractor supply, builder cement", metadataBase: new URL("https://srilakshmienterprises.com"),
|
title: "Sri Lakshmi Enterprises - Premium Cement Supplier", description: "Trusted cement supplier in Lakshmidevipeta, Andhra Pradesh. High-quality cement supply for homes, builders, and contractors with reliable delivery."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://srilakshmienterprises.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "Trusted Cement Supplier in Lakshmidevipeta", description: "High-quality cement supply for homes, builders, and contractors with reliable delivery.", url: "https://srilakshmienterprises.com", siteName: "Sri Lakshmi Enterprises", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/photo-concrete-texture-pattern_58702-13307.jpg", alt: "Construction site with cement and building materials"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Trusted Cement Supplier in Lakshmidevipeta", description: "High-quality cement supply for homes, builders, and contractors with reliable delivery.", images: ["http://img.b2bpic.net/free-photo/photo-concrete-texture-pattern_58702-13307.jpg"],
|
|
||||||
},
|
|
||||||
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} ${roboto.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
bottomLeftText="Lakshmidevipeta, Andhra Pradesh"
|
bottomLeftText="Lakshmidevipeta, Andhra Pradesh"
|
||||||
bottomRightText="+91-XXXXX XXXXX"
|
bottomRightText="+91-9876543210"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -276,7 +276,7 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact Info", items: [
|
title: "Contact Info", items: [
|
||||||
{ label: "Call: +91-XXXXX XXXXX", href: "tel:+919876543210" },
|
{ label: "Call: +91-9876543210", href: "tel:+919876543210" },
|
||||||
{ label: "WhatsApp: Message Us", href: "https://wa.me/919876543210" },
|
{ label: "WhatsApp: Message Us", href: "https://wa.me/919876543210" },
|
||||||
{ label: "Email: info@srilakshmi.com", href: "mailto:info@srilakshmi.com" },
|
{ label: "Email: info@srilakshmi.com", href: "mailto:info@srilakshmi.com" },
|
||||||
{ label: "Location: Lakshmidevipeta", href: "#" }
|
{ label: "Location: Lakshmidevipeta", href: "#" }
|
||||||
|
|||||||
Reference in New Issue
Block a user