Merge version_2 into main #4
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1423,7 +1391,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -79,16 +79,16 @@ export default function LandingPage() {
|
||||
tagIcon={Star}
|
||||
features={[
|
||||
{
|
||||
title: "4K Ultra HD Video", description: "Crystal clear cinematic footage that showcases every detail of your property", bentoComponent: "globe"
|
||||
title: "4K Ultra HD Video: Used by 500+ Agents", description: "Crystal clear cinematic footage showcasing every detail. Trusted by top real estate professionals nationwide.", bentoComponent: "globe"
|
||||
},
|
||||
{
|
||||
title: "Fast Turnaround", description: "Quick editing and delivery without compromising on quality", bentoComponent: "animated-bar-chart"
|
||||
title: "Fast Turnaround: 48-Hour Delivery", description: "Quick editing and delivery without compromising on quality. Most projects completed within two business days.", bentoComponent: "animated-bar-chart"
|
||||
},
|
||||
{
|
||||
title: "Professional Editing", description: "Color grading, transitions, and effects that elevate your property listing", bentoComponent: "line-chart"
|
||||
title: "Professional Editing: Industry-Grade Results", description: "Color grading, transitions, and effects that elevate your property listing. Equal to productions costing 3x more.", bentoComponent: "line-chart"
|
||||
},
|
||||
{
|
||||
title: "Licensed & Insured", description: "Full compliance with FAA regulations and commercial insurance coverage", bentoComponent: "orbiting-icons", centerIcon: Shield,
|
||||
title: "Licensed & Insured: FAA Part 107 Certified", description: "Full compliance with FAA regulations and $2M commercial insurance coverage. Fully documented and certified.", bentoComponent: "orbiting-icons", centerIcon: Shield,
|
||||
items: [
|
||||
{ icon: CheckCircle, ring: 1 },
|
||||
{ icon: Trophy, ring: 2 },
|
||||
|
||||
Reference in New Issue
Block a user