diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f0a0cfb..930530e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,47 +1,45 @@
import type { Metadata } from "next";
-import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
+import "./styles/variables.css";
+import "./styles/base.css";
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"],
});
export const metadata: Metadata = {
- title: "Elite Dreamscapes | Professional Landscaping Cedar Rapids, Iowa", description: "Expert landscaping, lawn care, and snow removal in Cedar Rapids, Iowa. Professional outdoor design services with affordable pricing and reliable results.", keywords: "landscaping Cedar Rapids Iowa, lawn care services, snow removal, outdoor design, professional landscaping", openGraph: {
- title: "Elite Dreamscapes | Professional Landscaping", description: "Transform your property with Elite Dreamscapes' professional landscaping and lawn care services in Cedar Rapids, Iowa.", siteName: "Elite Dreamscapes LLC", type: "website", images: [{
- url: "http://img.b2bpic.net/free-photo/path-way_74190-2125.jpg", alt: "Professional landscaping design"
- }]
- },
- twitter: {
- card: "summary_large_image", title: "Elite Dreamscapes | Landscaping Cedar Rapids", description: "Professional landscaping, lawn care, and snow removal services.", images: ["http://img.b2bpic.net/free-photo/path-way_74190-2125.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Powers Lawn Care | Professional Landscaping & Lawn Care Cedar Rapids", description:
+ "Professional landscaping, lawn care, and snow removal services in Cedar Rapids, Iowa. Expert design and reliable service."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-