Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9986cdbfee | |||
| a329f6a758 | |||
| 29b6f27db9 | |||
| 9013e2555d | |||
| d540e04240 | |||
| 09d18cafce | |||
| 45abd7bb2f | |||
| ae670f490e | |||
| dde8dec967 |
@@ -1,58 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
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"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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"),
|
||||
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,
|
||||
},
|
||||
};
|
||||
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."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ export default function LandingPage() {
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Lakshmidevipeta, Andhra Pradesh"
|
||||
bottomRightText="+91-XXXXX XXXXX"
|
||||
bottomRightText="+91-9876543210"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -83,7 +83,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
useInvertedBackground={true}
|
||||
buttons={[
|
||||
{ text: "WhatsApp Enquiry", href: "https://wa.me/919876543210" }
|
||||
{ text: "WhatsApp Enquiry", href: "https://wa.me/918712345678" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -276,8 +276,8 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
title: "Contact Info", items: [
|
||||
{ label: "Call: +91-XXXXX XXXXX", href: "tel:+919876543210" },
|
||||
{ label: "WhatsApp: Message Us", href: "https://wa.me/919876543210" },
|
||||
{ label: "Call: +91-9876543210", href: "tel:+919876543210" },
|
||||
{ label: "WhatsApp: Message Us", href: "https://wa.me/918712345678" },
|
||||
{ label: "Email: info@srilakshmi.com", href: "mailto:info@srilakshmi.com" },
|
||||
{ label: "Location: Lakshmidevipeta", href: "#" }
|
||||
]
|
||||
@@ -297,4 +297,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user