Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dca41a6d30 | |||
| d82d597c89 | |||
| 3cc62e52a4 | |||
| fb51813f0f | |||
| 039e584b4e |
@@ -1,66 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
|
||||||
variable: "--font-montserrat",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Premium Fence Installation Jacksonville FL | Fortera Fencing",
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1429,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,7 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar
|
|||||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
import { Award } from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
return (
|
return (
|
||||||
@@ -50,6 +51,9 @@ export default function HomePage() {
|
|||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
tag="Licensed Florida Contractor"
|
||||||
|
tagIcon={Award}
|
||||||
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Schedule Your Fence Estimate", href: "#contact" },
|
{ text: "Schedule Your Fence Estimate", href: "#contact" },
|
||||||
{ text: "Call 866-FENCING", href: "tel:866-336-2464" },
|
{ text: "Call 866-FENCING", href: "tel:866-336-2464" },
|
||||||
|
|||||||
Reference in New Issue
Block a user