diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..cc6b0b4 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,91 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { Sparkles } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c7f79cf..4acdbc3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } 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"], -}); +import { Inter } from "next/font/google"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Saxon's Lawn & Garden Care | Melbourne Inner North", description: "Expert lawn mowing, garden maintenance, and landscaping services in Melbourne's inner north. 5-star rated. Free quotes. Call 0435 097 522.", keywords: "lawn mowing Melbourne, garden maintenance Northcote, landscaping Preston, hedge trimming, turf installation, Melbourne inner north", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Saxon's Lawn & Garden Care | Professional Landscaping Melbourne", description: "Transform your outdoor space with expert lawn care and landscaping services. Serving Melbourne's inner north.", type: "website", siteName: "Saxon's Lawn & Garden Care", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-cutting-plant-leaves_23-2148905282.jpg", alt: "Professional lawn care service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Saxon's Lawn & Garden Care", description: "Expert lawn mowing and landscaping in Melbourne's inner north. Get your free quote today.", images: ["http://img.b2bpic.net/free-photo/close-up-cutting-plant-leaves_23-2148905282.jpg"], - }, -}; + title: "Saxon's Lawn & Garden Care", description: "Professional lawn and garden care services in Melbourne's inner north"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - -