Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bccd939ec2 | |||
| a757d087ef | |||
| 6beaa63b14 | |||
| ed5b0b156e | |||
| 301e34e4fb |
@@ -1,48 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const geist = Geist({
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "ProFence | Premium Fencing Installation & Repair", description: "Expert fencing solutions for residential and commercial properties. Wooden, vinyl, and metal fencing with 30+ years of experience. Free quotes available.", keywords: "fencing contractor, fence installation, vinyl fencing, wooden fence, metal fence, fence repair, residential fencing, commercial fencing", robots: {
|
title: "ProFence - Premium Fencing Solutions", description: "Expert fencing installation and design services for residential and commercial properties."};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "ProFence | Premium Fencing Solutions", description: "Transform your property with expert fencing installation and repair services.", siteName: "ProFence", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/modern-wooden-fence-lush-green-hedge-garden-landscape_626616-510.jpg", alt: "ProFence portfolio showcase"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "ProFence | Premium Fencing Solutions", description: "Expert fencing installation and repair services. Free quote today.", images: ["http://img.b2bpic.net/free-photo/modern-wooden-fence-lush-green-hedge-garden-landscape_626616-510.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1410,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -115,16 +115,16 @@ export default function LandingPage() {
|
|||||||
tagIcon={DollarSign}
|
tagIcon={DollarSign}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
plans={[
|
plans={[
|
||||||
{
|
|
||||||
id: "basic", badge: "Popular", badgeIcon: Sparkles,
|
|
||||||
price: "From $12/ft", subtitle: "Quality Chain Link & Basic Vinyl", features: [
|
|
||||||
"Professional installation", "1-year warranty included", "Site preparation", "Permits assistance"],
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "pro", badge: "Best Value", badgeIcon: Star,
|
id: "pro", badge: "Best Value", badgeIcon: Star,
|
||||||
price: "From $25/ft", subtitle: "Premium Vinyl & Composite", features: [
|
price: "From $25/ft", subtitle: "Premium Vinyl & Composite", features: [
|
||||||
"Expert installation included", "5-year warranty", "Site assessment", "Design consultation", "Maintenance package"],
|
"Expert installation included", "5-year warranty", "Site assessment", "Design consultation", "Maintenance package"],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: "basic", badge: "Popular", badgeIcon: Sparkles,
|
||||||
|
price: "From $12/ft", subtitle: "Quality Chain Link & Basic Vinyl", features: [
|
||||||
|
"Professional installation", "1-year warranty included", "Site preparation", "Permits assistance"],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "premium", badge: "Luxury", badgeIcon: Crown,
|
id: "premium", badge: "Luxury", badgeIcon: Crown,
|
||||||
price: "From $45/ft", subtitle: "Custom Metal & Hardwood", features: [
|
price: "From $45/ft", subtitle: "Custom Metal & Hardwood", features: [
|
||||||
@@ -245,4 +245,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user