Merge version_2 into main #4
@@ -1,54 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } 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 inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Web Design Agency | LeadGen Designs - Convert Visitors to Clients", description: "LeadGen Designs creates high-converting websites for businesses. Strategic design + powerful functionality = digital transformation. Get your custom proposal today.", keywords: "web design, web development, UX design, UI design, conversion optimization, digital marketing websites, agency", metadataBase: new URL("https://leadgendesigns.com"),
|
||||
alternates: {
|
||||
canonical: "https://leadgendesigns.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Web Design Agency | LeadGen Designs", description: "Transform your digital presence with high-converting web design. 200+ successful projects. Free consultation available.", url: "https://leadgendesigns.com", siteName: "LeadGen Designs", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148375531.jpg", alt: "LeadGen Designs - Web Design Portfolio"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Web Design Agency | LeadGen Designs", description: "High-converting websites that drive real business results. Expert design + development.", images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148375531.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "LeadGen Designs - High-Converting Websites That Drive Results", description: "Transform your digital presence with conversion-focused web design. Average client sees 40% more leads within 90 days."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -43,7 +43,7 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
logoText="LeadGen Designs"
|
||||
description="We create high-converting websites that turn visitors into clients. Strategic design meets powerful functionality to elevate your digital presence."
|
||||
description="Average client sees 40% more leads within 90 days. Our high-converting websites combine strategic design with powerful functionality to transform visitors into paying clients."
|
||||
buttons={[
|
||||
{ text: "View Our Work", href: "portfolio" },
|
||||
{ text: "Start Your Project", href: "contact" }
|
||||
@@ -290,4 +290,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user