diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 9167029..5793e5b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,64 +1,22 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } 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"],
-});
const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
+ variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Dumpster Rental Bakersfield, CA | Same-Day Delivery | NEXT ROLLOUT",
- description: "Fast & reliable dumpster rentals in Bakersfield, CA. Same-day delivery, upfront pricing, 5-star service for residential & commercial projects. Call (661) 390-0579.",
- keywords: "dumpster rental bakersfield, roll off dumpster, construction dumpster rental, concrete dumpster, same day dumpster rental, commercial dumpster rental bakersfield",
- openGraph: {
- title: "Dumpster Rental Bakersfield, CA | Same-Day Service",
- description: "Fast, reliable dumpster rentals with upfront pricing. 5-star rated local service. Call today for same-day delivery!",
- url: "https://nextrolloutserv.com",
- siteName: "NEXT ROLLOUT SERVICES",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/person-s-hand-holding-plastic-crate-supermarket_23-2148209752.jpg",
- alt: "Professional dumpster rental service",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Dumpster Rentals in Bakersfield, CA",
- description: "Same-day delivery, transparent pricing, 5-star service. Call (661) 390-0579",
- images: ["http://img.b2bpic.net/free-photo/person-s-hand-holding-plastic-crate-supermarket_23-2148209752.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "NEXT ROLLOUT - Dumpster Rental Services Bakersfield, CA", description: "Fast & reliable dumpster rentals in Bakersfield, CA. Same-day delivery, upfront pricing, 5-star service. Latino-owned & LGBTQ+ friendly."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-