Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f1e918a98 | |||
| dca41a6d30 | |||
| d82d597c89 | |||
| 3cc62e52a4 | |||
| fb51813f0f | |||
| 039e584b4e |
@@ -1,67 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Premium Fence Installation Jacksonville FL | Fortera Fencing",
|
||||
description: "Fortera Fencing is Northeast Florida's premium fence builder serving Jacksonville and surrounding counties. Professional installation, American-made materials, financing options, and exceptional customer experience.",
|
||||
keywords: "fence installation Jacksonville, premium fencing, fence contractor, wood fence, vinyl fence, aluminum fence, residential fencing, commercial fencing, Northeast Florida",
|
||||
metadataBase: new URL("https://forterafencing.com"),
|
||||
alternates: {
|
||||
canonical: "https://forterafencing.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Premium Fence Installation Jacksonville | Fortera Fencing",
|
||||
description: "Northeast Florida's premium fence builder. Professional installation, American-made materials, exceptional service.",
|
||||
url: "https://forterafencing.com",
|
||||
siteName: "Fortera Fencing",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Premium Fence Installation Jacksonville | Fortera Fencing",
|
||||
description: "Northeast Florida's premium fence builder with 20+ years of construction excellence.",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1429,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import Link from "next/link";
|
||||
import { Award } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
@@ -50,6 +51,9 @@ export default function HomePage() {
|
||||
mediaAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
tag="Licensed Florida Contractor"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Schedule Your Fence Estimate", href: "#contact" },
|
||||
{ text: "Call 866-FENCING", href: "tel:866-336-2464" },
|
||||
@@ -210,4 +214,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user