Update src/app/layout.tsx

This commit is contained in:
2026-03-06 23:23:38 +00:00
parent 26db6329e4
commit 10c03b413f

View File

@@ -1,70 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } 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 poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Trevor Melton Photography | Luxury Architectural & Real Estate Photographer South Florida",
description: "Premium architectural and luxury real estate photography in South Florida, Miami, Jupiter, and beyond. Technical excellence meets artistic vision. Featured in WSJ, The Real Deal, Luxury Portfolio.",
keywords: "luxury real estate photography South Florida, Miami architectural photographer, Palm Beach luxury photographer, Jupiter real estate photography, A&D photographer, luxury property photography, architectural documentation, high-end real estate photography",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Trevor Melton Photography | Luxury Architectural Photography",
description: "Premium architectural and luxury real estate photography for developers, architects, and luxury brands. South Florida based, nationally recognized.",
type: "website",
siteName: "Trevor Melton Photography",
images: [
{
url: "http://img.b2bpic.net/free-photo/low-angle-shot-multistory-apartment-complex-building_181624-5114.jpg",
alt: "Trevor Melton Photography - Luxury Architectural Portfolio",
},
],
},
twitter: {
card: "summary_large_image",
title: "Trevor Melton Photography | Luxury Architectural & Real Estate Photographer",
description: "Premium architectural photography for luxury properties, developers, and architects. Based in South Florida.",
images: ["http://img.b2bpic.net/free-photo/low-angle-shot-multistory-apartment-complex-building_181624-5114.jpg"],
},
};
title: "Trevor Melton", description: "Premium architectural and luxury real estate photography"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1432,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}