diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2b23bfd..834a3fd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,61 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", 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: "SkySnap Realty | Professional Drone Videography for Real Estate", description: "Professional drone videography services for real estate. 4K aerial property videos, licensed and insured. Fast turnaround, professional editing.", keywords: "drone videography, real estate video, aerial photography, property marketing, 4K video, licensed drone pilot", metadataBase: new URL("https://skysnaprealty.com"), - alternates: { - canonical: "https://skysnaprealty.com" - }, - openGraph: { - title: "SkySnap Realty | Drone Videography for Real Estate", description: "Transform your property listings with professional 4K drone videography. Fast turnaround, cinematic editing.", url: "https://skysnaprealty.com", siteName: "SkySnap Realty", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYRQzwQdlDoCxIBliGLmFKw7dL/a-stunning-aerial-drone-shot-of-a-modern-1772767637300-048b568e.png", alt: "Professional drone aerial property videography" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "SkySnap Realty | Professional Drone Videography", description: "4K drone videos that sell properties faster", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYRQzwQdlDoCxIBliGLmFKw7dL/a-stunning-aerial-drone-shot-of-a-modern-1772767637300-048b568e.png"] - }, - robots: { - index: true, - follow: true - } + title: "SkySnap Realty | Professional Drone Videography", description: "Professional drone videography services for real estate. 4K Ultra HD video, fast turnaround, and professional editing." }; export default function RootLayout({ - children, -}: Readonly<{ + children +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +