Merge version_2 into main #3
@@ -1,69 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Drone Services | Aerial Photography & Filming",
|
||||
description: "Expert drone services for aerial photography, cinematic filming, land surveying, and event coverage. High-quality content tailored to your vision.",
|
||||
keywords: "drone services, aerial photography, drone filming, aerial videography, land surveying, event coverage",
|
||||
metadataBase: new URL("https://dronevision.com"),
|
||||
alternates: {
|
||||
canonical: "https://dronevision.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Professional Drone Services | DroneVision",
|
||||
description: "Capture stunning aerial perspectives with cutting-edge drone technology. Expert aerial photography, filming, and surveying services.",
|
||||
url: "https://dronevision.com",
|
||||
siteName: "DroneVision",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYwK4Cz6PEx5jh2gk5mnsvZcTC/a-stunning-aerial-view-of-a-landscape-sh-1772782817665-16df9357.png",
|
||||
alt: "Aerial drone photography",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Professional Drone Services | DroneVision",
|
||||
description: "Expert aerial photography, filming, and surveying solutions for your business.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYwK4Cz6PEx5jh2gk5mnsvZcTC/a-stunning-aerial-view-of-a-landscape-sh-1772782817665-16df9357.png",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "DroneVision - Professional Aerial Solutions", description: "Certified drone services trusted by 500+ brands for stunning aerial photography, videography, and surveying solutions."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1431,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -73,7 +73,7 @@ export default function HomePage() {
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
title="About DroneVision"
|
||||
description="We're passionate about revolutionizing visual storytelling through advanced drone technology. With years of expertise and a team of certified professionals, we deliver exceptional aerial content that transforms how brands and businesses communicate their stories."
|
||||
description="Certified by leading industry authorities and trusted by 500+ brands worldwide, DroneVision delivers exceptional aerial content. With a team of certified professionals and years of expertise, we revolutionize visual storytelling through advanced drone technology and premium cinematic solutions."
|
||||
tag="Our Story"
|
||||
tagIcon={Users}
|
||||
tagAnimation="slide-up"
|
||||
@@ -243,4 +243,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user