diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b4e7920..92d884b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,28 @@
import type { Metadata } from "next";
-import { Roboto } from "next/font/google";
-import { Halant } from "next/font/google";
-import { Inter } 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 roboto = Roboto({
- variable: "--font-roboto", subsets: ["latin"],
- weight: ["100", "300", "400", "500", "700", "900"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Luxury Landscape Design | Liberty Landscape", description: "Premium landscape design and build for high-end residential properties. Bespoke outdoor spaces with luxury stonework, garden architecture, and sophisticated lighting.", keywords: "luxury landscape design, high-end landscaping, premium outdoor design, landscape architect, luxury garden design, hardscape design", openGraph: {
- title: "Luxury Landscape Design | Liberty Landscape", description: "Transform your outdoor space into a refined, luxury environment. Custom landscape design and build from concept to completion.", siteName: "Liberty Landscape", images: [
- {
- url: "http://img.b2bpic.net/free-photo/big-stone-made-chinese-chess-inside-park_1112-1150.jpg", alt: "Luxury landscape design"
- }
- ],
- type: "website"
- },
- twitter: {
- card: "summary_large_image", title: "Luxury Landscape Design | Liberty Landscape", description: "Premium landscape design and build for high-end properties.", images: ["http://img.b2bpic.net/free-photo/big-stone-made-chinese-chess-inside-park_1112-1150.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index f9dc38c..09c1b0e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -153,7 +153,7 @@ export default function LandingPage() {