Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8dfa83b812 | |||
| 3f1a23f405 | |||
| ddc105159a | |||
| bccd939ec2 | |||
| a757d087ef | |||
| 6beaa63b14 | |||
| ed5b0b156e | |||
| 301e34e4fb |
@@ -1,48 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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: {
|
||||
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"],
|
||||
},
|
||||
};
|
||||
title: "ProFence - Premium Fencing Solutions", description: "Expert fencing installation and design services for residential and commercial properties."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1410,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ export default function LandingPage() {
|
||||
tagIcon={Hammer}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Get Free Quote", href: "contact" },
|
||||
{ text: "Get Your Free Quote Now", href: "contact" },
|
||||
{ text: "View Portfolio", href: "services" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -115,16 +115,16 @@ export default function LandingPage() {
|
||||
tagIcon={DollarSign}
|
||||
tagAnimation="slide-up"
|
||||
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,
|
||||
price: "From $25/ft", subtitle: "Premium Vinyl & Composite", features: [
|
||||
"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,
|
||||
price: "From $45/ft", subtitle: "Custom Metal & Hardwood", features: [
|
||||
@@ -245,4 +245,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user