diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 266c619..ab760be 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-