Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a983f2e29f | |||
| 76f72862b9 | |||
| 1fe67b5a72 | |||
| 2a44d5072a | |||
| 65f1b2d1b1 |
@@ -1,54 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Raleway } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const raleway = Raleway({
|
const geist = Geist({
|
||||||
variable: "--font-raleway", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const halant = Halant({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Luxury Renovation & Construction | TBL Contractors LLC", description: "High-end home renovations, deck construction, and repairs with precision execution and clear communication. Trusted by Arlington homeowners.", keywords: "luxury renovation, home remodeling, deck construction, Arlington contractor, precision construction, luxury contractor", robots: {
|
title: "TBL Contractors - Luxury Renovation & Construction", description: "High-end home renovations, decks, and repairs in Arlington, TX. Licensed, insured, and trusted by homeowners."};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Luxury Renovation & Construction Done Right | TBL Contractors", description: "High-end home renovations with unmatched precision, clean execution, and constant communication.", type: "website", siteName: "TBL Contractors LLC", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976526.jpg", alt: "Luxury home renovation project"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Luxury Renovation & Construction | TBL Contractors", description: "Precision construction and luxury renovations for Arlington homeowners.", images: ["http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976526.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={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNinete
|
|||||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
||||||
import ContactText from "@/components/sections/contact/ContactText";
|
import ContactText from "@/components/sections/contact/ContactText";
|
||||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||||
import { Calendar, CheckCircle, ClipboardList, Hammer, MessageSquare, Shield, Sparkles, Star, Wrench } from "lucide-react";
|
import { Calendar, CheckCircle, ClipboardList, Hammer, MessageSquare, Shield, Sparkles, Star, Wrench, Award } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -43,7 +43,7 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitDualMedia
|
<HeroSplitDualMedia
|
||||||
title="Luxury Renovation & Construction — Done Right the First Time."
|
title="Luxury Renovation & Construction — Done Right the First Time."
|
||||||
description="TBL Contractors LLC delivers high-end home renovations, decks, and repairs with unmatched precision, clean execution, and constant communication — serving homeowners across the Arlington area."
|
description="TBL Contractors LLC delivers high-end home renovations, decks, and repairs with unmatched precision, clean execution, and constant communication — serving homeowners across the Arlington area. Licensed & Insured. Trusted by homeowners who demand perfection."
|
||||||
tag="Precision Construction"
|
tag="Precision Construction"
|
||||||
tagIcon={Hammer}
|
tagIcon={Hammer}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user