diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 649e332..fe44163 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -154,4 +154,4 @@ export default function AboutPage() {
/>
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index fa09135..bcd2dd6 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -138,4 +138,4 @@ export default function ContactPage() {
/>
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 38f7951..a6eef87 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,62 +1,26 @@
import type { Metadata } from "next";
-import { Poppins } from "next/font/google";
+import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "./styles/variables.css";
+import "./styles/base.css";
-const poppins = Poppins({
- variable: "--font-poppins",
- subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
+const inter = Inter({
+ variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Dubai Real Estate | Premium Properties & Investment",
- description: "Discover luxury properties in Dubai. Expert real estate services for buying, selling, and investing. 500+ premium listings across Dubai's finest neighborhoods.",
- keywords: ["real estate dubai", "luxury properties", "buy apartment dubai", "dubai villas", "property investment"],
- metadataBase: new URL("https://dubairealty.com"),
- alternates: {
- canonical: "https://dubairealty.com"
- },
- openGraph: {
- title: "Dubai Realty - Premium Real Estate in Dubai",
- description: "Find your dream property in Dubai with expert guidance and exclusive listings.",
- url: "https://dubairealty.com",
- siteName: "Dubai Realty",
- images: [
- {
- url: "https://img.b2bpic.net/free-photo/inner-courtyard-with-swimming-pool_661209-479.jpg",
- alt: "Dubai Luxury Property"
- }
- ],
- type: "website"
- },
- twitter: {
- card: "summary_large_image",
- title: "Dubai Realty - Premium Real Estate",
- description: "Discover luxury properties and investments in Dubai",
- images: ["https://img.b2bpic.net/free-photo/inner-courtyard-with-swimming-pool_661209-479.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Dubai Realty - Luxury Properties", description: "Discover premium properties across Dubai's most exclusive neighborhoods. Luxury villas, penthouses, and investment opportunities."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-